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

Envío 1442

Problema 0x78 - Suma de 2 números

  • Autor: c4rlosc7
  • Fecha: 2020-10-27 01:25:42 UTC (Hace más de 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.189 s 13 KBi
#2
Correcto
0.183 s 13 KBi
#3
Correcto
0.187 s 14 KBi
#4
Correcto
0.183 s 13 KBi
#5
Correcto
0.182 s 13 KBi
Puntos totales: 100 / 100

Código

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long n1 = sc.nextInt();
        long n2 = sc.nextInt();

        System.out.println(n1+n2);
    }
}