/**
 * Demonstrating some use of the System.in and System.out objects.
 * Needs to be updated to handle checked exception.
 * 
 * @author CSCI209
 *
 */
public class SystemIOStarter {

	/**
	 * @param args
	 */
	public static void main(String[] args) {

		System.out.println("Trying out System.out and System.in classes");
		
		System.out.print("Enter an integer: ");
		int number = System.in.read();
		
		System.out.println("You entered " + number);
	}

}
