public static void Main()
Console.WriteLine("Adja meg a téglalap vízszintes oldalát (cm)!");
string a = Console.ReadLine();
Console.WriteLine("Adja meg a téglalap függőleges oldalát (cm)!");
string b = Console.ReadLine();
int a_i = Convert.ToInt16(a);
int b_i = Convert.ToInt16(b);
Console.WriteLine("Kerület: {0} cm", kerület);
Console.WriteLine("Terület: {0} cm\u00b2", terület);