public class KeyboardExample{
				
	public static void main( String args[] ){
		
		//variable declarations
		String name;
		int age;
		
		//prompt the user for a name
		System.out.print("\tEnter your name: ");
		//read their response
		name = Keyboard.readString();
		
		//prompt the user for an age
		System.out.print("\tEnter your age: ");
		//read their response
		age = Keyboard.readInt();
		
		System.out.println("Hello " + name + ", you are " + age + " years old!");
			
	}//main
	
}//class