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