power-girl0-0 2021. 2. 28. 05:07
728x90

n = int(input())
result = 0

for i in range(1, n+1):
    result += i
    
print(result)
728x90