# 공백을 기준으로 입력받은 2개의 숫자 n부터 m까지 모든 정수를 출력하는 코드를 작성해 주세요!
# [입력]
# 1 10
# [출력]
# 1
# 2
# 3
# 4
# 5
# 6
# 7
# 8
# 9
# 10


# 1~10  더하기
sum=0
for i in range(1,11):
    sum += i
print(sum)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: