# 백준 #27959 (초코바) # N (가지고 있는 동전 개수), M (초코바 가격)입력 N, M = input().split() N = int(N) M = int(M) # 결과 출력 (Yes or No) if N * 100 >= M : print("Yes") else : print("No")