#include <iostream>

int main() {
    int x{4};
    int y{9};
    int* const fixed{&x};
    fixed = &y;
    std::cout << *fixed << '\n';
    return 0;
}
