#include "bottle1.h"
#include "bigbottle.h"

int main()
{
    bottle x(2);
    bigbottle y(3);

    x.sing();
    y.sing();

    return 0;
}
