using System;
public class Program
{
public static void Main()
Console.Write("Намери периметъра на квадрат със страна а = ");
var a =double.Parse(Console.ReadLine());
var P= 4 * a ;
Console.Write("Периметъра на на квадрата P = ");
Console.WriteLine(P);
}