Search

62 백준_Python [8393] 합

num = int(input()) tot_num = 0 for i in range(1,num+1): tot_num += i print(tot_num)
Python
복사