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

[백준/파이썬] 15122번 Forbidden Zero

by 현장 2023. 5. 21.

-Code

n = int(input())

while True:
    n += 1

    if '0' not in str(n):
        print(n)
        break