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

Envío 4091

Problema 0x78 - Suma de 2 números

  • Autor: TacoMeister
  • Fecha: 2021-05-11 00:40:23 UTC (Hace casi 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.128 s 13 KBi
#2
Correcto
0.131 s 14 KBi
#3
Correcto
0.195 s 14 KBi
#4
Correcto
0.122 s 14 KBi
#5
Correcto
0.122 s 14 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 n1 = scanner.nextInt();
        int n2 = scanner.nextInt();
        System.out.println(n1 + n2);
    }
}