public static void Main()
int iAge = 0, iHeight = 0;
string sName = "", sOccupation = "";
Console.WriteLine("Now, what is your name?: ");
sName = Console.ReadLine();
Console.WriteLine("How old are you - in whole years?: ");
iAge = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("..and what is your occupation?: ");
sOccupation = Console.ReadLine();
Console.WriteLine("So your name is " + sName + ", your age is " + iAge + ", and your job is " + sOccupation + ".");
Console.WriteLine("welcome, " + sName + "!");
Console.WriteLine("Now, what is your height in centimetres?: ");
iHeight = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("That is taller than I am!");
Console.WriteLine("What a coindidence! We are the same height!");
Console.WriteLine("Aha! So you are smaller than me!");