fork download
  1.  
  2.  
  3. import java.util.*;
  4. class Ideone
  5. {
  6. public static void main (String args[])
  7. {
  8. int a,b,c;
  9. Scanner SC = new Scanner(System.in);
  10. System.out.println("enter a,b");
  11. a=SC.nextInt();
  12. b=SC.nextInt();
  13. c=a+b;
  14. System.out.println("c="+c);
  15. }
  16. }
Success #stdin #stdout 0.07s 4386816KB
stdin
5
4
stdout
enter a,b
c=9