#include using namespace std; int main() { int N; cin >> N; int ans = N; while (N--) ans += N; cout << ans << "\n"; }