본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]14606번 피자 (Small)

by 현장 2021. 9. 15.

-코드

n = int(input())
r = 0
for i in range(1, n):
    r += i
print(r)