using System;
public class Program
{
public static void Main()
int i = 4;
int j = (i * 4) + 3;
Console.WriteLine(j);
}