using System;
public class Program
{
public static void Main()
Console.WriteLine("Введіть сторону Квадрата:");
int a = int.Parse(Console.ReadLine());
int p = 4 * a;
int s = a * a;
Console.WriteLine("Периметр квадрата =" + p);
Console.WriteLine("Площа квадрата =" + s);
}