#include #include using namespace std; int main() { int N, S; cin >> N >> S; if (25 + (N - 1) <= S) { cout << "Yes" << endl; } else { cout << "No" << endl; } return 0; }