public class TestInput{
   public void run() {
       Input myInput = new Input();
       System.out.print("What's your age?");
       int c = myInput.readInt();
       System.out.println("Your age is" + c);
   }


public static void main(String main[]){
    TestInput myApp = new TestInput();
    myApp.run();
} // end of main

} // end of class

