fork download
  1. import java.util.Scanner;
  2. /* Name of the class has to be "Main" only if the class is public. */
  3. class Ideone
  4. {
  5. public static void main (String[] args) throws java.lang.Exception
  6. {
  7. Scanner sc = new Scanner(System.in);
  8. System.out.print("Introduce el primer número: ");
  9. int a = sc.nextInt();
  10. System.out.print("Introduce el segundo número: ");
  11. int b = sc.nextInt();
  12. int suma = a + b;
  13. System.out.println("La suma es: " + suma);
  14. }
  15. }
Success #stdin #stdout 0.21s 56924KB
stdin
3
4

stdout
Introduce el primer número: Introduce el segundo número: La suma es: 7