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

Envío 2472

Problema 0x78 - Suma de 2 números

  • Autor: 7yrionLannister
  • Fecha: 2020-12-21 16:35:43 UTC (Hace más de 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.154 s 16 KBi
#2
Correcto
0.165 s 16 KBi
#3
Correcto
0.152 s 52 KBi
#4
Correcto
0.18 s 16 KBi
#5
Correcto
0.162 s 12 KBi
Puntos totales: 100 / 100

Código

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