var word="bottles";
var count=99;
while(count>0){
console.log(count+""+word+"of bear on the wall");
console.log(count+""+word+"of bear");
console.log("take one down");
count=count-1;
if(count>0){
console.log(count+""+word+"of bear on the wall");
}
else{
console.log("no more"+word+"of bear on the wall");
}
}