class Max {
public:
    int getMax(int a, int b) {
        // write code here
        int sym = (a-b) >> 31;
        return a+(a-b) *sym;
    }
};