竞赛
考级
#include <bits/stdc++.h> using namespace std; int main(){ int n,m; cin>>n>>m; if(n==m){ cout<<"NO"; }else{ cout<<"YES"; } return 0; }
倒车请故意
Liam
法兰西玫瑰
一枚button
#include <iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b; if(a!=b) { cout<<"YES"; } else { cout<<"NO"; } return 0; }
chaizechen
#include<iostream> #include<cstdio> using namespace std; const string yes = "YES"; const string no = "NO"; void game() { int a,b; cin>>a>>b; cout<<(a != b?yes:no); return ; } int main() { game(); return 0; }
复仇者_澜
#include <iostream> using namespace std; int main(){ int a,b; cin>>a>>b; if(a!=b){ cout<<"YES"; }else cout<<"NO"; return 0; }
135****5269
#include <bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; if(a!=b) { cout<<"YES"; } else { cout<<"NO"; } return 0; }
章静远
_1943
四大Tian王
#include <iostream> using namespace std; int main(){ int a,b; scanf("%d%d",&a,&b); if(a==b) printf("NO\n"); else printf("YES\n"); return 0; }
Voldemort
6.
YuQing1919
#include<bits/stdc++.h> using namespace std; int main(){ int a , b; cin >> a >> b; if(a != b) cout << "YES"; else cout << "NO"; return 0; }
DARK SPECTRE
逍遥骇好=&