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

Envío 4431

Problema 0x78 - Suma de 2 números

  • Autor: sergio95it
  • Fecha: 2021-06-20 22:35:12 UTC (Hace casi 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.16 s 14 KBi
#2
Error interno
No such file or directory @ rb_sysopen - /box/Main.java
#3
Correcto
0.185 s 14 KBi
#4
Correcto
0.183 s 14 KBi
#5
Correcto
0.138 s 12 KBi
Puntos totales: 80 / 100

Código

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


}