class Max {
public:
    int getMax(int a, int b) {
        // write code here
        return a > b ? a : b;
    }
};