#include using namespace std; int n, s; int main() { cin >> n >> s; if(s >= 25 && s < 30 * n) cout << "Yes" << endl; else cout << "No" << endl; }