using System; namespace ConsoleApp5 { class Program { static void Main(string[] args) { string numberOfPeopleInQueue; int timeForOnePerson = 10; string hello = "Введите число людей в очереди:"; int countOfPeople; int time; string end; int hours; int minutes; Console.Write(hello); numberOfPeopleInQueue = Console.ReadLine(); countOfPeople = Convert.ToInt32(numberOfPeopleInQueue); time = countOfPeople * timeForOnePerson; hours = time / 60; minutes = time % 60; end = "Вы должны отстоять в очереди: " + time + " минут или " + hours + " часов и " + minutes + " минут."; Console.WriteLine(end); } } }