#include <iostream>
using namespace std;

const int x = 5;

int main() {
	int* p = const_cast<int*>(&x);
	*p = 10;
	return 0;
}