int maximum(int x, int y) { int z; z = (x >= y) ? x : y; return z; }