using System;
public class Program
{
public static void Main(string[] args)
string name = Console.ReadLine();
int projectsCount = int.Parse(Console.ReadLine());
int hours = projectsCount * 3;
Console.WriteLine($"The architect {name} will need {12} hours to complete {4} project/s.");
}