#include <iostream>
using namespace std;

struct C {
	C() {}
	
	C(const C& other) {
		printf("My new address is %p", this);
	}
};

int main() {
	C c1;
	C c2 = c1;
	return 0;
}