#include <iostream>
using namespace std;

int main() {
	int i = 99;
	while(i > 0)
	{
		printf("%d bottles of coke on the wall...", i);
		i = i - 1;
		printf("Take one down, pass it around, %d bottles of code of the wall \n", i);
	}
	return 0;
}