#include using namespace std; int N; int main () { cin >> N; long long int ans = (1+N)*N/2; cout << ans << endl; return 0; }