using System;
public class Module1
{
public void Main()
/* string word=null;
//int res = Convert.ToInt16(word);
//int res=int.Parse(word);
int res=int.TryParse(word);
//Parse(word);
Console.WriteLine(res);*/
string str1="9009";
string str2=null;
string str3="9009.9090800";
string str4="90909809099090909900900909090909";
int finalResult;
finalResult = int.Parse(str1); //success
finalResult = Convert.ToInt32(str2); // ArgumentNullException
finalResult = int.Parse(str3); //FormatException
finalResult = int.Parse(str4); //OverflowException
}