What will the following Python code output? x = 5 y = 10 if not x > 10 and y == 10: print("Conditions met") else: print("Conditions not met")