#include <iostream>

int main() {
    const int total{5};
    total = 8;
    std::cout << total << '\n';
    return 0;
}
