using System;
public class Program
{
public static void Main()
int a = 5, b = 6;
int c = 2 *(a +b);
int d = a * b;
Console.WriteLine("A téglalap kerülete: " + c + " centiméter.");
Console.WriteLine("A téglalap területe: " + c + " centiméter.");
}