public static void Main()
var month = Console.ReadLine().ToLower();
var hours = double.Parse(Console.ReadLine());
var numP = int.Parse(Console.ReadLine());
var dayNight = Console.ReadLine();
string[] monthh = {"january", "february", "march", "april", "may", "june", "july", "august", "september",
"october", "november", "december"};
for(int i =0; i < monthh.Length; i++)
if(monthh[2] == month ||monthh[3] == month ||monthh[4] == month)
else if(dayNight == "night")
else if(monthh[5] == month ||monthh[6] == month ||monthh[7] == month)
else if(dayNight == "night")
Console.WriteLine("Price per person for one hour: {0:f2}", total);
Console.WriteLine("Total cost of the visit: {0:f2}", total*numP*hours);