using System;
public class Program
{
public static void Main()
string name = "George";
int number = 4;
int project = number * 3;
Console.WriteLine("The architect " + name + "will need " + number + " hours to complete " + project + " project/s.");
}