

// 下面这段代码,看起来很奇怪,可是一定要很熟悉的啊#include <bits/stdc++.h>using namespace std;struct node{int x, y;node(int _x = 0, int _y = 0): x(_x), y(_y){}bool operator< (const node& W)const{if (x == W.x) return y < W.y;return x < W.x;}};int main(){node A = node(2, 3);node B = node(3, 4);if (A < B) cout << '<' << '\n';else cout << ">=" << '\n';return 0;}
