using System;
public class Program
{
public static void Main()
Console.WriteLine("How many bottles are on the wall?");
int bottles = Convert.ToInt32(Console.ReadLine());
bottles = bottles+1;
for (int i = bottles; i >= 1; i --)
int wow = i-1;
Console.WriteLine("There are "+wow+" bottles on the wall");
}