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