public static void Main()
Console.WriteLine("7 * 2 > 13 + 5: " + (7 * 2 > 13 + 5));
Console.WriteLine("72 == 8 * 9: " + (72 == 8 * 9));
Console.WriteLine("Enter 'hamburger'");
string s1 = Console.ReadLine();
Console.WriteLine( "Yes: " + (s1.ToLower() == "hamburger"));
Console.WriteLine("\nLength of your word != 9: " + (s1.Length != 9));
Console.WriteLine("Length of your word is even AND < 10 " + (s1.Length % 2 == 0 && s1.Length < 10));
Console.WriteLine("Length of your word is even OR < 10 " + (s1.Length % 2 == 0 || s1.Length < 10));
Console.WriteLine("Length of your word is even XOR < 10 " + (s1.Length % 2 == 0 ^ s1.Length < 10));
Console.WriteLine("\nEnter an animal name: ");
if(s1 == ("dog") || s1 == ("cat") || s1 == ("fish"))
Console.WriteLine("Ah, a common household pet!");
if(s1 == ("horse") || s1 == ("cow") || s1 == ("pig"))
Console.WriteLine("Oho, a common farm animal");
if(s1 == ("lion") || s1 == ("tiger") || s1 == ("bear"))
Console.WriteLine("Oh my, that is likely to eat you!");
Console.WriteLine("There's no way that's and animal.");
Console.WriteLine("I'm changing your animal.");
Console.WriteLine("Your animal is the " + s1 + ".");