题解
2025-08-03 22:00:35
发布于:江苏
2阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
if(a<=5&&b<=7){
cout<<"NO";
}else if(a>=6){
cout<<"NO";
}else{
cout<<"YES";
}
return 0;
}
这里空空如也
有帮助,赞一个