int amountPatients; int timeReception = 10; int hoursExpectation; int minutesExpectation; int spentTime; int minutInHour = 60; Console.Write("Пациентов в очереди:"); amountPatients = Convert.ToInt32(Console.ReadLine()); spentTime = amountPatients * timeReception; hoursExpectation = spentTime / minutInHour; minutesExpectation = spentTime % minutInHour; Console.WriteLine("Вы должны отстоять в очереди " + hoursExpectation + " часа "+ minutesExpectation + " минут");