public static void Main()
bool cond1 = (x > 1 && x > y);
Console.WriteLine("cond1 = {0}, z = {1}", cond1, z);
bool cond2 = (x > 1 || x > y);
Console.WriteLine("cond1 = {0}, w = {1}", cond2, w);
Console.WriteLine("Please enter a number");
string strNum1 = Console.ReadLine();
Console.WriteLine("Please enter another number");
string strNum2 = Console.ReadLine();
int iNum1 = Convert.ToInt32(strNum1);
int iNum2 = Convert.ToInt32(strNum2);
if (iNum1 > 255|| iNum2 > 255)
Console.WriteLine("These Numbers are Too Big!");
Console.WriteLine("Thank You");