#include <iostream>
using namespace std;

int main() {
	
	const char* some_str = "Foo";
	const char* some_other_str = "Foo";
	
	std::cout << (void*) some_str << std::endl
	          << (void*) some_other_str << std::endl;
	return 0;
}