#include <iostream>

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