using System;
namespace রম্বস // Namespace declaration.রম্বস=Namespace Name.
{
public class ক্ষেত্রফল // Main Class.Class declaration.ক্ষেত্রফল=Class Name.
public static void Main(string[] args) // Main method.
int বাহু,উচ্চতা; // Variable এর Data type নির্ধারণ।
double ক্ষেত্রফল; // Variable এর Data type নির্ধারণ।
Console.Write("বাহুঃ"); // Output Method and Statement.
বাহু=Convert.ToInt32(Console.ReadLine()); // User input Method.
Console.Write("\nউচ্চতাঃ"); // Output Method and Statement.
উচ্চতা=Convert.ToInt32(Console.ReadLine()); // User input Method.
ক্ষেত্রফল=(বাহু*উচ্চতা); // Expressions.
Console.WriteLine("\nরম্বসের ক্ষেত্রফলঃ"+ক্ষেত্রফল+" একক।"); // Class Method. (\n)=line break.
}