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

Envío 6383

Problema 0x78 - Suma de 2 números

  • Autor: Camilo15
  • Fecha: 2022-07-01 14:58:22 UTC (Hace casi 2 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.104 s 16 KBi
#2
Correcto
0.086 s 16 KBi
#3
Correcto
0.107 s 16 KBi
#4
Correcto
0.089 s 16 KBi
#5
Correcto
0.088 s 16 KBi
Puntos totales: 100 / 100

Código

import java.util.*;
public class Main {

    public static void main(String[] args) throws java.lang.Exception {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        

            System.out.println(a+b);

}    

    }