fork download
  1.  
  2.  
  3. import java.util.Scanner;
  4. //import java.lang.*;
  5. //import java.io.*;
  6.  
  7.  
  8. class Main
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. Scanner in=new Scanner(System.in);
  13. int f;
  14. System.out.println("enter number:");
  15. f=in.nextInt();
  16. System.out.println("number="+f);
  17. }
  18. }
Success #stdin #stdout 0.13s 56880KB
stdin
5
stdout
enter number:
number=5