#define  PLUS +
class Solution {
public:
    int Add(int num1, int num2) {
        return num1 PLUS num2;
    }
};