public static void Main()
Console.WriteLine("Enter an integer within the console below:");
int myInt = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter a second integer within the console below:");
myInt = Convert.ToInt32(Console.ReadLine());
bool isGreaterThan255 = myInt > 255;
bool isLessThan255 = myInt < 255;
Console.WriteLine("Integer less than 255? {0}", isLessThan255);
Console.WriteLine("Integer greater than 255? {0}", isGreaterThan255);
Console.WriteLine("These numbers are too big!");
else my Int (isLessThn255)