fork download
  1. import java.lang.Math;
  2. import java.util.Scanner;
  3.  
  4.  
  5. class HelloWorld
  6. {
  7.  
  8. public static void main(String[] args)
  9. {
  10. System.out.println("Gimmifffe a value");
  11. Scanner scan = new Scanner(System.in);
  12. int v1 = scan.nextInt();
  13. System.out.println(v1);
  14. }
  15. }
Success #stdin #stdout 0.12s 54596KB
stdin
42
stdout
Gimmifffe a value
42