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

Envío 294

Problema 0x78 - Suma de 2 números

  • Autor: orendon
  • Fecha: 2020-08-30 22:32:11 UTC (Hace más de 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.176 s 13 KBi
#2
Correcto
0.175 s 13 KBi
#3
Correcto
0.164 s 13 KBi
#4
Correcto
0.173 s 13 KBi
#5
Correcto
0.184 s 13 KBi
Puntos totales: 100 / 100

Código

import java.util.*;

class Main {
    public static void main(String[] args) {
        long a, b;

        Scanner scan = new Scanner(System.in);
        a = scan.nextLong();
        b = scan.nextLong();
        scan.close();
        System.out.println(a + b);
    }
}