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

[백준/파이썬] 27959번 초코바

by 현장 2023. 5. 26.

-Code

n, m = map(int, input().split())

print("Yes" if n * 100 >= m else "No")