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