#高斯求和#

import sys

get = int(input())
# 高斯求和
print((get * (get + 1)) // 2)