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

Envío 1791

Problema 0x78 - Suma de 2 números

  • Autor: scorpere
  • Fecha: 2020-11-07 00:15:21 UTC (Hace más de 3 años)
Caso # Resultado Tiempo Memoria
#1
Incorrecto
0.186 s 13 KBi
#2
Incorrecto
0.182 s 13 KBi
#3
Incorrecto
0.199 s 13 KBi
#4
Incorrecto
0.168 s 13 KBi
#5
Incorrecto
0.17 s 13 KBi
Puntos totales: 0 / 100

Código

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		
		System.out.println("NÚMEROS A SUMAR :");
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();int b = sc.nextInt();
		System.out.println(a+b);

	}

}