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