if __name__ == '__main__': x = 5 y = 2 if x % 2 == 0: print("Even") else: print("Odd") result = "Even" if y % 2 == 0 else "Odd" print(result)