import java.io.*; class HelloYou1a { /* A program that prompts for your name then says hello to you personally. Uses the SimpleInput class (from David Barnes' book) */ public static void main(String[] args) throws IOException { String name; SimpleInput in = new SimpleInput(); System.out.print("Please type your name: "); name=in.nextLine(); System.out.println("Hello "+name); } }