#include <iostream>
#include <cstdint>

int main(void) {
    constexpr int x = 10;
    x = 4;
    std::cout << x << std::endl;s
    return 0;
}

