1public class Beer
2{
3int special;
4public static void main(String RIGHT[])
5{
6String s=" ";
7for(int x = 99; x > 0; x--)
8{
9System.out.print(x + " bottles of beer on the wall "
10+ x + " bottles of beer\n" // ChangeMe
11+ "Take one down, pass it around, " + (x - 1)
12+ " bottles of beer on the wall.\n");
13}
14System.out.print("Go to the store, buy some more,\n"
15+ "99 bottles of beer on the wall.\n");
16}
17}