public static void Main()
double targetHoney = double.Parse(Console.ReadLine());
while (beeName != "Winter has come")
if (targetHoney <= collectHoney)
Console.WriteLine($"Well done! Honey surplus {collectHoney - targetHoney:F2}.");
beeName = Console.ReadLine();
if (beeName == "Winter has come")
if (targetHoney > collectHoney)
Console.WriteLine($"Hard Winter! Honey needed {targetHoney - collectHoney:F2}.");
for (int i = 1; i <= 6; i++)
countHoney = double.Parse(Console.ReadLine());
collectHoney += countHoney;
Console.WriteLine($"{beeName} was banished for gluttony");