#include
using namespace std; int main() { int x = 10; ++x; cout << x; return 0; }
11