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