using System;
public class Program
{
public static void Main()
Console.WriteLine("ENTER NUMBER OF BOTTLES ON THE WALL");
int bot = Convert.ToInt32(Console.ReadLine());
for (int i = 0; i <= bot;bot--)
Console.WriteLine("there are " +bot+ " bottles sitting on the wall");
}