public static void Main()
double tomatoSeeds = double.Parse(Console.ReadLine());
double tomatoArea = double.Parse(Console.ReadLine());
double cucumberSeeds = double.Parse(Console.ReadLine());
double cucumberArea = double.Parse(Console.ReadLine());
double potatoSeeds = double.Parse(Console.ReadLine());
double potatoArea = double.Parse(Console.ReadLine());
double carrotSeeds = double.Parse(Console.ReadLine());
double carrotArea = double.Parse(Console.ReadLine());
double cabbageSeeds = double.Parse(Console.ReadLine());
double cabbageArea = double.Parse(Console.ReadLine());
double beansSeeds = double.Parse(Console.ReadLine());
double cost = tomatoSeeds * 0.5 + cucumberSeeds * 0.4 + potatoSeeds * 0.25 + carrotSeeds * 0.6 + cabbageSeeds * 0.3 + beansSeeds * 0.4;
Console.WriteLine("Total costs: {0:F2}", cost);
double beansArea = 250 - (tomatoArea + cucumberArea + potatoArea + carrotArea + cabbageArea);
Console.WriteLine("Beans area: {0}", beansArea);
Console.WriteLine("No area for beans");
Console.WriteLine("Insufficient area");