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

Envío 3035

Problema 0x78 - Suma de 2 números

  • Autor: juanboterog
  • Fecha: 2021-02-15 21:29:22 UTC (Hace alrededor de 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.176 s 16 KBi
#2
Correcto
0.17 s 16 KBi
#3
Correcto
0.16 s 12 KBi
#4
Correcto
0.173 s 16 KBi
#5
Correcto
0.189 s 16 KBi
Puntos totales: 100 / 100

Código

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int a = scanner.nextInt();
        int b = scanner.nextInt();
        System.out.println(a + b);
    }
}