public static void Main()
Console.WriteLine("Hello give me a number to square");
int myDouble = Convert.ToInt16(Console.ReadLine());
Console.WriteLine(myDouble * myDouble);
catch(OverflowException e)
Console.WriteLine("ouch, thats way too big a number");
Console.WriteLine("ouch, thats not a whole number");