def Start(): n = int(input()) if n<1 or n>100: return Start() else: answer=n*(n+1)/2 print(answer)