using System;
public class Program
{
public static void Main()
Console.WriteLine("Въведи страна a:");
int a = int.Parse(Console.ReadLine());
Console.WriteLine("Въведи страна b:");
int b = int.Parse(Console.ReadLine());
int area = a*b;
Console.WriteLine("Лицето на правоъгълника е:");
Console.WriteLine(area);
}