import element.*; public class Noah { public static void main(String args[]) { ConsoleWindow c = new ConsoleWindow(); int cowInventory = 101; c.out.print("You have "+cowInventory+" cow"); if (cowInventory != 1) { c.out.print('s'); } c.out.println("!"); if ((cowInventory % 2) == 0) { c.out.println("Noah, you have an even number of cows."); } else { c.out.println("WARNING: cows aren't in pairs. Get another."); } } } /* You have 101 cows! You have 1 cow! */