using System;
namespace tamrin
{
class Tamrin
static void Main(string[] args)
/*تمرین سوم سری یک - عباس حمیدی*/
Console.Write("لطفا عدد مورد نظر خود را وارد نمایید");
int a = Convert.ToInt32(Console.ReadLine());
int b = a * a;
Console.WriteLine("مربع عدد شما=" + b );
}