#include #include #include using namespace std; int max2(int a, int b) { if(a>b) { return a; } return b; } int max4(int a, int b, int c, int d) { return max2(max2(max2(a,b),c),d); } int main() { return 0; }