using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
long[] arr = new long[]
{
3243512345344190889L,
1000L,
9999999999999999L,
8989L,
110000000
};
int maxint = int.MaxValue;
foreach (long l in arr)
{
if (l > maxint)
Console.WriteLine(l);
}
}
}
}
/*
run:
3243512345344190889
9999999999999999
*/