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

Envío 6555

Problema 0x78 - Suma de 2 números

  • Autor: Justin
  • Fecha: 2022-08-05 22:24:38 UTC (Hace más de 1 año)
Caso # Resultado Tiempo Memoria
#1
Correcto
0.096 s 13 KBi
#2
Correcto
0.1 s 13 KBi
#3
Correcto
0.093 s 13 KBi
#4
Correcto
0.108 s 19 KBi
#5
Correcto
0.093 s 13 KBi
Puntos totales: 100 / 100

Código

import java.util.Scanner;

class Main {

  public static void main(String[] args) {
    int number_one, number_two;
    Scanner sc = new Scanner(System.in);

    number_one = sc.nextInt();
    number_two = sc.nextInt();

    int suma = number_one + number_two;
    System.out.println(suma);
  }
}