import java.io.*; class HelloYou0a { // A program that prompts for your name then says hello to you personally public static void main(String[] args) throws IOException { String name; BufferedReader fred = new BufferedReader(new InputStreamReader(System.in)); System.out.print("Please type your name: "); name=fred.readLine(); System.out.println("Hello "+name); } }