← Back to List
27959번: 초코바 ↗
Solutions
Python 3
68 B | 68 chars
n, m = map(int, input().split()) print("Yes" if n* 100>=m else "No")