using System;
public class Program
{
public static void Main()
Console.WriteLine("Enter the side of the square");
int side = Convert.ToInt32(Console.ReadLine());
int area = side*side;
int perimeter = 2*side;
Console.WriteLine("Area of thye square " + area);
Console.WriteLine("The perimeter of the square " + perimeter);
}