#include <iostream>
using namespace std;

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