using System;
public class Program
{
public static void Main()
int a, b;
a = 9;
b = 2;
Console.WriteLine("rectangle area is:" + a * b);
}