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

Envío 6792

Problema 0x78 - Suma de 2 números

  • Autor: Aaron Zuñiga
  • Fecha: 2022-12-03 05:16:22 UTC (Hace más de 1 año)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.145 s 13 KBi
#2
Correcto
0.13 s 13 KBi
#3
Correcto
0.123 s 13 KBi
#4
Correcto
0.125 s 13 KBi
#5
Correcto
0.127 s 13 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);
    }
}