#include #include #include #include #include #include #include #include #include #include #include using namespace std; using int64 = long long; struct aaa{aaa(){cin.tie(nullptr); ios::sync_with_stdio(false); cout<> n; int ans = 0; for (int x=0; x<=n; x++) { for (int y=0; y<=n-x; y++) { ans++; } } cout << ans << endl; }