using System;
public class Program
{
public static void Main()
try
int maxIntegerValue = int.MaxValue;
Console.WriteLine( maxIntegerValue *2 / 2);
}
catch (OverflowException overflowException)
Console.WriteLine(overflowException.Message);