
public class goofy { 
	
	public static void main ( String [ ] args ) {
		
		String yummy, silly, choosy;
		
		yummy = "Wowzzie -- it's that \"time\" already?!!";
		silly = "No it's not -- I don't belive in time in that way";
		
		for ( int i=1; i<=20; i++) {
			int crazy = (int) (10 * Math.random());
			
			if ( crazy < 3 )
				choosy = i + " " + yummy;
			else
				choosy = i + " " + silly;
			
			System.out.println(choosy);
		}
		
		
		
	}

}

