본문 바로가기

[SW][BEAKJOON]/[SW][BEAKJOON][반복문]

[BEAKJOON][반복문][8393][Python] 합

반응형

PROBLEM

  - Link

Approach to the problem

  - 

Code

# 입력 : n이 주어진다 (1~10000)
# 1~n 까지의 합을 출력

n = int(input())

for i in range(n+1)
	sum = sum + i
   
print(sum)

End

  - 

반응형