█████████ ████ ███░░░░░███ ░░███ ███ ░░░ ██████ ███████ ██████ ██████ ░███ ███░░███ ███░░███ ███░░███ ███░░███ ░███ ░███ ░███░███ ░███ ░███████ ░███ ░███ ░░███ ███░███ ░███░███ ░███ ░███░░░ ░███ ░███ ░░█████████ ░░██████ ░░████████░░██████ ░░██████ ░░░░░░░░░ ░░░░░░ ░░░░░░░░ ░░░░░░ ░░░░░░

Envío 2957

Problema 0x78 - Suma de 2 números

  • Autor: davidtoca
  • Fecha: 2021-02-12 23:13:06 UTC (Hace alrededor de 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.179 s 16 KBi
#2
Correcto
0.161 s 16 KBi
#3
Correcto
0.178 s 16 KBi
#4
Correcto
0.16 s 15 KBi
#5
Correcto
0.173 s 15 KBi
Puntos totales: 100 / 100

Código

import java.util.Scanner;

class Main{

    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);

        int a = sc.nextInt();
        int b = sc.nextInt();
        System.out.println(a+b);
    }
}