/* Earl Bergquist, Garfield AP CS, 2011 
	Let's Use a few Static Methods to do Garfield Cheers */
	
public class StartToday20110912 {
	public static void main(String[] args) {
		  first();
		  cheer();
		  second();
		  cheer();
   }

	public static void cheer() {
	     System.out.println("G!H!S!");
	}

	public static void first() {
	 	  System.out.println("What do you say first?");
	}
	 
	public static void second() {	
        System.out.println("And next??");
	}

}

