[BAEKJOON] 8393 : 합 - python3 1 2 3 4 5 n = int(input()) m=0 for i in range(0,n+1,1): m = m + i print(m) cs Study/BAEKJOON 2021.08.05