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

Envío 4968

Problema 0x78 - Suma de 2 números

  • Autor: martinarriaga
  • Fecha: 2021-09-30 22:18:14 UTC (Hace más de 2 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.125 s 12 KBi
#2
Correcto
0.226 s 12 KBi
#3
Correcto
0.218 s 12 KBi
#4
Correcto
0.133 s 11 KBi
#5
Correcto
0.224 s 12 KBi
Puntos totales: 100 / 100

Código

import java.util.Scanner;

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

}