first = input() # 読み込んだ文字列をスペースで分割する split_first = first.split() # それぞれをint型に変換する A = int(split_first[0]) num = 0 for i in range(A): num += i+1 print(num)