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

Envío 7115

Problema 0x78 - Suma de 2 números

  • Autor: dperezne
  • Fecha: 2023-09-20 00:57:41 UTC (Hace 8 meses)
Caso # Resultado Tiempo Memoria
#1
Incorrecto
0.108 s 13 KBi
#2
Incorrecto
0.098 s 13 KBi
#3
Incorrecto
0.097 s 13 KBi
#4
Incorrecto
0.105 s 13 KBi
#5
Incorrecto
0.106 s 13 KBi
Puntos totales: 0 / 100

Código

import java.util.Scanner;

class Main{
 public static void main(String[] args){
  Scanner scanner = new Scanner(System.in);
  System.out.println("Into value a:");
  int a = scanner.nextInt();
  System.out.println("Into value b:");
  int b = scanner.nextInt();
 }
}