using System; public class Test { public static void Main() { int a = 2147483647; Console.WriteLine(a); a++; Console.WriteLine(a); } }