public static void Main()
Console.WriteLine("Въведете бюджет за филма:");
double budget = double.Parse(Console.ReadLine());
Console.WriteLine("Въведете броя на статистите:");
int supernumeraryCount = int.Parse(Console.ReadLine());
Console.WriteLine("Въведете цената на облеклото за един статист:");
double clothingPrice = double.Parse(Console.ReadLine());
double decor = budget*.1;
if (supernumeraryCount <= 150)
double clothingPriceTotal = clothingPrice*supernumeraryCount;
double expense = decor+clothingPriceTotal;
double clothingPriceTotal = clothingPrice*supernumeraryCount*.9;
double expense = decor+clothingPriceTotal;