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