#include "bottle1.h"

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

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

    return 0;
}
