Programming/백준
[백준] 8393 - 합 (파이썬)
pental
2020. 4. 2. 00:27
num = int(input())
result = 0
for i in range (num+1):
result += i
print(result)