Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace ProjectsCreation
- {
- class Program
- {
- static void Main(string[] args)
- {
- string name = Console.ReadLine();
- int projects = int.Parse(Console.ReadLine());
- Console.WriteLine($"The architect {name} will need {projects * 3} hours to complete {projects} project/s.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement