public static void Main()
Console.WriteLine("[1] MAY AND OCTOBER");
Console.WriteLine("[2] JUNE AND SEPTEMBER");
Console.WriteLine("[3] JULY AND AUGUST");
month = Convert.ToString(Console.ReadLine());
if (month == "MAY" || month == "OCTOBER")
Console.WriteLine("INPUT DAYS OF STAY: ");
days = int.Parse(Console.ReadLine());
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 T IS: " + total + " lv.");
else if (month == "JUNE" || month == "SEPTEMBER")
Console.WriteLine("INPUT DAYS OF STAY: ");
days = int.Parse(Console.ReadLine());
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("INPUT DAYS OF STAY: ");
days = int.Parse(Console.ReadLine());
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.");