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

Envío 1437

Problema 0x78 - Suma de 2 números

  • Autor: c4rlosc7
  • Fecha: 2020-10-26 00:47:38 UTC (Hace más de 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.165 s 13 KBi
#2
Correcto
0.178 s 13 KBi
#3
Correcto
0.16 s 13 KBi
#4
Correcto
0.17 s 13 KBi
#5
Correcto
0.171 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);

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

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