public static void Main()
double money = double.Parse(Console.ReadLine());
string seaso = Console.ReadLine();
string season = seaso.ToLower();
Console.WriteLine("Somewhere in Bulgaria");
double spend = money / 100.0 * 30;
Console.WriteLine("Camp - {0:F2}", spend);
else if (season == "winter")
double spend = money / 100.0 * 70;
Console.WriteLine("Hotel - {0:F2}", spend);
Console.WriteLine("Somewhere in Balkans");
double spend = money /100.0 * 40;
Console.WriteLine("Camp - {0:F2}", spend);
else if (season == "winter")
double spend = money / 100.0 * 80;
Console.WriteLine("Hotel - {0:F2}", spend);
Console.WriteLine("Somewhere in Europe");
double spend = money / 100.0 * 90;
Console.WriteLine("Hotel - {0:F2}", spend);