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