#include <stdio.h>
#include "bottle1.h"


bottle::bottle(int n)
{
    index = n;
}


void bottle::sing()
{
    printf("%d bottles of beer on the wall\n", index);
}
