#include <iostream>
using namespace std;
int main() {
const int myNum = 15;
myNum = 10;
cout << myNum;
return 0;
}