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

Envío 3033

Problema 0x78 - Suma de 2 números

  • Autor: juanboterog
  • Fecha: 2021-02-15 20:57:56 UTC (Hace alrededor de 3 años)
Caso # Resultado Tiempo Memoria
#1
Incorrecto
0.171 s 16 KBi
#2
Incorrecto
0.162 s 16 KBi
#3
Incorrecto
0.163 s 15 KBi
#4
Incorrecto
0.163 s 16 KBi
#5
Incorrecto
0.152 s 15 KBi
Puntos totales: 0 / 100

Código

import java.util.Scanner;

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

        System.out.println("Enter first integer: ");
        int a = myInput.nextInt();
        System.out.println("Enter second integer: ");
        int b = myInput.nextInt();
        System.out.println(a + b);
    }
}