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

[백준/파이썬] 28135번 Since 1973

by 현장 2024. 4. 22.

-Code

res = 0

for n in range(int(input())):
    res += 1

    if "50" in str(n):
        res += 1

print(res)