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

Envío 1089

Problema 0x78 - Suma de 2 números

  • Autor: Felipe
  • Fecha: 2020-10-09 23:40:38 UTC (Hace más de 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.179 s 13 KBi
#2
Correcto
0.171 s 13 KBi
#3
Correcto
0.172 s 13 KBi
#4
Correcto
0.18 s 13 KBi
#5
Correcto
0.169 s 13 KBi
Puntos totales: 100 / 100

Código

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