public class Hello_input { public static void main( String[] args ) { //declare a variable String name; // read your name from the keyboard using a method from the file ITI1120.java // whcih you need to download into your current directory name= ITI1120.readString(); // print two strings, concatenated System.out.println( "Hello, " + name ); } }