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

Envío 4802

Problema 0x78 - Suma de 2 números

  • Autor: diezgo1008
  • Fecha: 2021-08-20 02:24:02 UTC (Hace más de 2 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.13 s 14 KBi
#2
Correcto
0.125 s 14 KBi
#3
Correcto
0.13 s 14 KBi
#4
Correcto
0.128 s 14 KBi
#5
Correcto
0.125 s 14 KBi
Puntos totales: 100 / 100

Código

import java.util.Scanner;

public class Main {

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

    }

}