Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<bits/stdc++.h>
- using namespace std;
- #define ll long long
- void solve(){
- int a, b; cin>>a>>b;
- cout<<(a > b ? "YES\n" : "NO\n");
- }
- int main(){
- ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
- int TC = 1;
- cin>>TC;
- while(TC--){
- solve();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment