import java.util.*; // provides access to the Scanner class class ScannerTest { public static void main(String[] args) { System.out.println("How old are you? (Please type your age)"); Scanner input = new Scanner(System.in); int age = input.nextInt(); System.out.println(""+age+"? Wow - that's old!"); } }