numbers = [1, 3, 5, 6, 7, 9]
for num in numbers:
    if num % 2 == 0:  # اگر عدد زوج باشد
        print(f"اولین عدد زوج: {num}")
        break