#include <iostream>

int main() {
    const int fixed{6};
    int* write{&fixed};
    std::cout << *write << '\n';
    return 0;
}
