public static void Main()
var budged = double.Parse(Console.ReadLine());
var season = Console.ReadLine();
double camp = Math.Round(0.3 * budged, 2);
double hotel = Math.Round(0.7 * budged, 2);
Console.WriteLine("Somewhere in Bulgaria");
Console.WriteLine("Camp - " + camp);
Console.WriteLine("Somewhere in Bulgaria");
Console.WriteLine("Hotel - " + hotel);
if (budged <= 1000 && budged > 100)
double camp = Math.Round(0.4 * budged, 2);
double hotel = Math.Round(0.8 * budged, 2);
Console.WriteLine("Somewhere in Balkans");
Console.WriteLine("Camp - " + camp);
Console.WriteLine("Somewhere in Balkans");
Console.WriteLine("Hotel - " + hotel);
double europe = Math.Round(0.9 * budged, 2);
Console.WriteLine("Somewhere in Europe");
Console.WriteLine("Hotel - " + europe);