Note

[codeup] 93. 거기까지! 이제 그만~ 본문

etc/Coding Test

[codeup] 93. 거기까지! 이제 그만~

알 수 없는 사용자 2021. 12. 23. 21:14
728x90
n = int(input())
a = 0
b = 0
while True:
    a+=b
    b+=1
    if a>=n:
        break
print(a)
Comments