2025.N줄덧셈

풀이

T = int(input())

total = 0
for i in range(1, T+1):
    total += i

print(total)