For the following function, which is a valid function call? assume maxvalue is an integer. int max(int x, int y) { if (x > y){ return x; } else { return y; } }