def sum_one_to_n(n:int): return n * (n + 1) // 2 n = int(input()) print(sum_one_to_n(n))