power-girl0-0

[ 8393 ] 합 본문

백준 알고리즘/python

[ 8393 ] 합

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

'백준 알고리즘 > python' 카테고리의 다른 글

[ 2741 ] N 찍기  (0) 2021.02.28
[ 15552 ] 빠른 A+B  (0) 2021.02.28
[ 10950 ] A + B - 3  (0) 2021.02.28
[ 2739 ] 구구단  (0) 2021.02.28
[ 2884 ] 알람 시계  (0) 2021.02.28
Comments