#include <iostream>
#include <vector>
using namespace std;

class bunny {};

int main() {
    vector<bunny> bunnies;
    bunnies.push_back(bunny());
}

//https://pt.stackoverflow.com/q/131955/101