/* SimpleIO.java David G. Klick August 29, 2007 CIS 111 Demonstrates simple I/O using CIS111App class */ public class SimpleIO extends CIS111App { public static void main(String[] args) { // variable declarations and initialization String firstName = new String(); int age =0; firstName = getLine("Please enter your first name: "); println("Good afternoon, " + firstName); age = getInt("Please enter your age: "); println("Really? You look much older than " + age); } }