#include <iostream>

int main() {
    int value{4};
    const int& read{value};
    value = 7;
    std::cout << value << ' ' << read << '\n';
    const int fixed{9};
    const int& fixed_read{fixed};
    std::cout << fixed << ' ' << fixed_read << '\n';
    return 0;
}
