fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4.  
  5. int main()
  6. {
  7. int a, b;
  8. cin >> a >> b;
  9. if (a == b) {
  10. cout << "NO";
  11. } else {
  12. cout << "YES";
  13. }
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
YES