알고리즘/백준

백준-8393번(합)-python

nyeongha 2023. 11. 23. 02:32

백준-8393번(합)-python

i=int(input())
y=0
for x in range(i+1):
    y+=x
print(y)