public static void Main()
int budget = int.Parse(Console.ReadLine()); string season = Console.ReadLine();
int fishermenCount = int.Parse(Console.ReadLine());
case "Spring": boatRentalPrice = 3000; totalCost = boatRentalPrice;
case "Summer": boatRentalPrice = 4200; totalCost = boatRentalPrice;
case "Autumn": boatRentalPrice = 4200; totalCost = boatRentalPrice;
case "Winter": boatRentalPrice = 2600; totalCost = boatRentalPrice;
if (fishermenCount <= 6) {
totalCost -= totalCost * 0.10;
} else if (fishermenCount <= 11) {
totalCost -= totalCost * 0.15;
} else if (fishermenCount >= 12) {
totalCost -= totalCost * 0.25;
if (fishermenCount % 2 == 0 && season != "Autumn") {
totalCost -= totalCost* 0.05;
if (budget >= totalCost) {
double moneyLeft = Math.Round(budget - totalCost, 2);
Console.WriteLine("Yes! You have " + moneyLeft + "leva");
double moneyYouNeed = Math.Round(totalCost - budget, 2);
Console.WriteLine("Not enough money! You need " + moneyYouNeed + "leva");