public static void Main()
double discount, discount1, discount2, total, total1, total2;
Console.WriteLine("==HOTEL ROOM==");
Console.WriteLine("*ROOM PRICES*");
Console.WriteLine("[1] MAY AND OCTOBER: STUDIO = 50.00 BGN/PER NIGHT, APARTMENT = 65.00 BGN/PER NIGHT");
Console.WriteLine("[2] JUNE AND SEPTEMBER: STUDIO = 75.20 BGN/PER NIGHT, APARTMENT = 68.70 BGN/PER NIGHT");
Console.WriteLine("[3] JULY AND AUGUST: STUDIO = 76.00 BGN/PER NIGHT, APARTMENT = 77.00 BGN/PER NIGHT");
Console.WriteLine("PLEASE CHOOSE THE MONTH OF STAY: ");
month = Convert.ToString(Console.ReadLine());
Console.WriteLine("INPUT DAYS OF STAY: ");
days = int.Parse(Console.ReadLine());
if (month == "MAY" || month == "OCTOBER")
if (days >= 8 && days <= 14)
Console.WriteLine("YOU HAVE A 5% DISCOUNT FOR STUDIO");
Console.WriteLine("YOUR TOTAL FOR APARTMENT: " + total1 + " lv.");
Console.WriteLine("YOUR TOTAL FOR STUDIO: " + total + " lv.");
Console.WriteLine("YOU HAVE A 30% DISCOUNT FOR STUDIO");
Console.WriteLine("YOU ALSO HAVE A 10% DISCOUNT FOR APARTMENT");
total1 = discount1 * days;
total2 = discount2 * days;
Console.WriteLine("YOUR TOTAL FOR APARTMENT: " + total2 + " lv.");
Console.WriteLine("YOUR TOTAL FOR STUDIO: " + total1 + " lv.");
Console.WriteLine("YOUR TOTAL FOR APARTMENT: " + total1 + " lv.");
Console.WriteLine("YOUR TOTAL FOR STUDIO: " + total + " lv.");
else if (month == "JUNE" || month == "SEPTEMBER")
Console.WriteLine("YOU HAVE A 20% DISCOUNT FOR STUDIO");
Console.WriteLine("YOU ALSO HAVE A 10% DISCOUNT FOR APARTMENT");
discount1 = 75.20 - 15.04;
discount2 = 68.70 - 6.87;
total1 = discount1 * days;
total2 = discount2 * days;
Console.WriteLine("YOUR TOTAL FOR APARTMENT: " + total2 + " lv.");
Console.WriteLine("YOUR TOTAL FOR STUDIO: " + total1 + " lv.");
Console.WriteLine("YOUR TOTAL FOR APARTMENT: " + total1 + " lv.");
Console.WriteLine("YOUR TOTAL FOR STUDIO: " + total + " lv.");
else if (month == "JULY" || month == "AUGUST")
Console.WriteLine("YOU HAVE A 10% DISCOUNT FOR APARTMENT");
total1 = discount * days;
Console.WriteLine("YOUR TOTAL FOR APARTMENT: " + total1 + " lv.");
Console.WriteLine("YOUR TOTAL FOR STUDIO: " + total + " lv.");
Console.WriteLine("YOUR TOTAL FOR APARTMENT: " + total1 + " lv.");
Console.WriteLine("YOUR TOTAL FOR STUDIO: " + total + " lv.");
Console.WriteLine("INVALID INPUT.");