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

Envío 1436

Problema 0x78 - Suma de 2 números

  • Autor: c4rlosc7
  • Fecha: 2020-10-26 00:46:51 UTC (Hace más de 3 años)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.159 s 13 KBi
#2
Correcto
0.162 s 13 KBi
#3
Correcto
0.172 s 13 KBi
#4
Correcto
0.15 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);

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

        int sum = n1 + n2;

        System.out.println(sum);
    }
}