vector<Rectangle> v;

    v.push_back(Rectangle(1, 2));

    v.push_back(Rectangle(3, 4));

이런식으로 값넣고 

1, 2

3, 4 

이렇게 출력하고 싶은데 어떻게 하는지 알고싶어...