题解
2024-12-25 21:59:56
发布于:江苏
2阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
if(a!=b){
cout<<"YES";
}else{
cout<<"NO";
}
return 0;
}
#include<iostream>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
if(a==b){
cout<<"NO";
}else{
cout<<"YES";
}
return 0;
}
这里空空如也
有帮助,赞一个