N = int(input()) ans = 'Yes' if N < 10: ans = 'No' if N >= 100: ans = 'No' print(ans)