IMohammedNasr

Day 1 / A

Aug 18th, 2022
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. #define ll long long
  4.  
  5. void solve(){
  6.     int a, b; cin>>a>>b;
  7.     cout<<(a > b ? "YES\n" : "NO\n");
  8. }
  9.  
  10.  
  11. int main(){
  12.     ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr); 
  13.     int TC = 1;
  14.     cin>>TC;
  15.     while(TC--){
  16.         solve();
  17.     }
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment