공존’s BLOG
/
Database
/
Resources
/
백준_Python
/
62 백준_Python [8393] 합
Search
Share
62 백준_Python [8393] 합
8393번: 합
n이 주어졌을 때, 1부터 n까지 합을 구하는 프로그램을 작성하시오.
num
=
int
(
input
(
)
)
tot_num
=
0
for
i
in
range
(
1
,
num
+
1
)
:
tot_num
+=
i
print
(
tot_num
)
Python
복사