#include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; int num = (n * (n + 1)); cout << num / 2; return 0; }