using System;
public class Program
{
public static void Main()
Console.WriteLine("Enter an integer:");
int a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter another integer:");
int b = Convert.ToInt32(Console.ReadLine());
if (a>255||b>255)
Console.WriteLine("These numbers are too long!");
}