for i in range(5): if i % 2 == 0: print(f"{i} es par") else: print(f"{i} es impar")