#include <iostream>
using namespace std;


int main() {
    const int a = 10;
    a = 20;
    cout<<a<<endl;
    return 0; 
}