for

(

int

=

99

;

>-

1

;

--

)

{

System

out

println

(

(

==

0

?

"no more"

:

)

+

" bottle"

+

(

==

1

?

""

:

"s"

)

+

" of beer on the wall, "

+

(

==

0

?

"no more"

:

)

+

" bottle"

+

(

==

1

?

""

:

"s"

)

+

" of beer.

"

+

(

==

0

?

"go to the store and buy some more, "

:

"take one down, pass it around, "

)

+

(

==

0

?

99

:

(

==

1

?

"no more"

:

-

1

)

)

+

" bottle"

+

(

==

2

?

""

:

"s"

)

+

" of beer on the wall

"

)

;