n, s = map(int,input().split()) mini = 25 + n - 1 maxi = 29 * n if mini <= n <= maxi: print('Yes') else: print('No')