April Long One 2022

Ezio and Guards

#include <iostream>
using namespace std;

int main() {
    // your code goes here
    int t;
    cin >> t;
    while (t--) {
        int x, y;
        cin >> x >> y;
        if (x >= y) {
            cout << "Yes" << endl;
        } else {
            cout << "No" << endl;
        }
    }
    return 0;
}

The Cooler Dilemma 1

The Cooler Dilemma 2

Dazzling GCD Pair

Dazzling AXNODR Challenge

Prime Sum

Pairwise Xors

Last updated

Was this helpful?