#include <iostream>
using namespace std;
constexpr char*   ptr = "123";
int main() {
	cout<<(void*)ptr<<endl;
	return 0;
}