#include #include using namespace std; class Integer { private: int i; public: Integer(int i) { this->i = i; } int get() { return i; } }; const int MAX = 1000000; int main() { hrtime_t t_start = gethrtime(); for (int i=0; i