#include using namespace std; typedef long long ll; #define yesif(x) cout << ((x) ? "Yes": "No") << endl int main() { ll n, s; cin >> n >> s; yesif(s >= 25 and s/n<=29); return 0; }