What is the output of the following code? X, Y, Z = 10, 20, 15 if X > Y and X > Z: print(X) elif Y > X and Y > Z: print(Y) else: print(Z)