fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int ara[3][3] = {
  6. {1, 2, 3},
  7. {4, 5, 6},
  8. {7, 8, 9}
  9. };
  10.  
  11. int a, b;
  12. cin >> a >> b;
  13.  
  14. if((b-a)<=2)
  15. cout << "YES";
  16. else
  17. cout << "NO";
  18.  
  19. return 0;
  20. }
Success #stdin #stdout 0.01s 5292KB
stdin
7 8
stdout
YES