public static void Main()
string name = Console.ReadLine();
int projectsNum = int.Parse(Console.ReadLine());
int hours = projectsNum * 3;
Console.WriteLine("The architect {0} will need {1} hours to complete {2} project/s.", name, hours, projectsNum);