Advertisement
Saleh127

CF 1437A

Oct 27th, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define ll long long
  4. #define test int t; cin>>t; for(int cs=1;cs<=t;cs++)
  5. int main()
  6. {
  7. ios_base::sync_with_stdio(0);
  8. cin.tie(0);cout.tie(0);
  9.  
  10. ll t;
  11. cin>>t;
  12. while(t--)
  13. {
  14. ll a,b;
  15. cin>>a>>b;
  16. if(abs(a-b)<min(a,b)) cout<<"YES"<<endl;
  17. else cout<<"NO"<<endl;
  18. }
  19.  
  20.  
  21. return 0;
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement