#include <iostream>

class Foo {
    int x;
public:
    Foo() {
    	std::cout << std::hex << this << std::endl;
    	
    	this->x = 5;
    }
};

int main() {
    Foo* foo = new Foo();
	return 0;
}