Може ли някъква помощ? Не ми го приема в джъдж и това си е!! :)
using System;
namespace ArchitectProject
{
class Program
{
static void Main(string[] args)
{
//The architeckt name
string name = Console.ReadLine();
//the count of the projects
int projects = int.Parse(Console.ReadLine());
//the time needed for one project
int time = projects * 3;
Console.WriteLine($"The architect {name} will need {time} hours to complete {projects} project/s.");
}
}
}
Охх благодаря :D