Console.WriteLine("Add meg az a oldalt: "); int a = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Add meg a b oldalt: "); int b = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("A kerület: "); Console.WriteLine(2 * (a + b)); Console.WriteLine("A terület: "); Console.WriteLine(a * b); Console.ReadKey();