#include <iostream>
using namespace std;

struct Nod {
	int val, poz;
	bool operator > (const Nod& other) {
		return val > other.val;
	}
};
int main() {
	// your code goes here
	Nod A, B;
	A.val = 2; B.val = 1;
	if (A > B) {
		cout << "A mai mare decat B";
	}
	
	return 0;
}