public static void Main()
Console.WriteLine("Enter an integer:");
int myInt = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter another integer:");
int mysecondInt = Convert.ToInt32(Console.ReadLine());
if (myInt > 225 || mysecondInt > 225)
Console.WriteLine("These numbers are too long!");