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;
}public static void Main() {
int testcases = Convert.ToInt32(Console.ReadLine());
for (int i = 0; i < testcases; i++) {
// your code goes here
string[] inputs = Console.ReadLine().Split();
int x = int.Parse(inputs[0]);
int y = int.Parse(inputs[1]);
if (x >= y)
Console.WriteLine("Yes");
else
Console.WriteLine("No");
}
}The Cooler Dilemma 1
The Cooler Dilemma 2
Dazzling GCD Pair
Dazzling AXNODR Challenge
Prime Sum
Pairwise Xors
Last updated
Was this helpful?