提交时间:2026-03-08 19:47:44

运行 ID: 431666

#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; if(a>=15&&b>=10){ cout<<"YES"; }else if(a>=25){ cout<<"YES"; }else if(b>=30){ cout<<"YES"; }else{ cout<<"NO"; } return 0; }