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

Envío 4284

Problema 0x78 - Suma de 2 números

  • Autor: saris123
  • Fecha: 2021-06-05 22:40:29 UTC (Hace casi 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.122 s 13 KBi
#2
Correcto
0.129 s 13 KBi
#3
Correcto
0.13 s 13 KBi
#4
Correcto
0.117 s 13 KBi
#5
Correcto
0.143 s 12 KBi
Puntos totales: 100 / 100

Código

import java.util.Scanner;
public class Main {
    public static void main(String[] args){
        Scanner sc= new Scanner(System.in);
        int numberA = sc.nextInt();
        int numberB = sc.nextInt();
        System.out.println(numberA + numberB);
    }
}