#include <iostream>

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