Skip to content

Instantly share code, notes, and snippets.

@qjatn0120
Created March 23, 2023 14:15
Show Gist options
  • Save qjatn0120/89f315ab8d415b8e22293c96c4029143 to your computer and use it in GitHub Desktop.
Save qjatn0120/89f315ab8d415b8e22293c96c4029143 to your computer and use it in GitHub Desktop.
#ifdef DEBUG
#include "debug.h"
#endif // DEBUG
#ifndef DEBUG
template <typename T>
void debug(T &x){}
template <typename T>
void debug(T &x, int i, int j){}
#endif // DEBUG
#include <bits/stdc++.h>
using namespace std;
int main(){
cin.tie(nullptr), ios::sync_with_stdio(false);
int T;
cin >> T;
while(T--){
int x, y;
cin >> x >> y;
cout << (x * 5 >= y ? "YES\n" : "NO\n");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment