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


bigbottle::bigbottle(int n)
    : bottle(n * 10)
{
}


void bigbottle::sing()
{
    printf("such a big bottle of beer on the wall, that it's like ");
    bottle::sing();
}
