using System;
public class Program
{
public static void Main()
Console.Write("Введіть x: ");
int AB = int.Parse(Console.ReadLine());
int AC = AB+3;
int BC = AC+4;
int P = AB + AC + BC;
Console.WriteLine("Периметр = " + P);
}