using static System.Console;
var bottleOrBottles = "bottles";
for (count = 99; count >= 1; count = count - 1)
lyricLine4 = ($"{(count - 1)} bottles of beer on the wall!");
lyricLine4 = ($"{(count - 1)} bottle of beer on the wall!");
bottleOrBottles = "bottle";
lyricLine4 = ("No more bottles of beer on the wall!");
WriteLine($"{count} {bottleOrBottles} of beer on the wall,");
WriteLine($"{count} {bottleOrBottles} of beer!");
WriteLine("Take one down, pass it around,");
WriteLine("No bottles of beer on the wall,");
WriteLine("No bottles of beer!");
WriteLine("Go to the store, buy some more,");
WriteLine("99 bottles of beer on the wall...");