fork download
  1. import java.util.*;
  2. class Ideone
  3. {
  4. public static void main (String[] args){
  5. Scanner in = new Scanner(System.in);
  6. int f=in.nextInt();
  7. System.out.println("the number is"+f);
  8. }
  9. }
Success #stdin #stdout 0.13s 58960KB
stdin
7
stdout
the number is7