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

Envío 4073

Problema 0x78 - Suma de 2 números

  • Autor: meow
  • Fecha: 2021-05-06 00:13:12 UTC (Hace casi 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.129 s 13 KBi
#2
Correcto
0.268 s 15 KBi
#3
Correcto
0.109 s 17 KBi
#4
Correcto
0.133 s 13 KBi
#5
Correcto
0.109 s 17 KBi
Puntos totales: 100 / 100

Código

import java.util.*;

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

}