numbers = [1, 2, 3, 4, 5]
for num in numbers:
    if num % 2 == 0:  # اگر عدد زوج باشد
        continue
    print(f"عدد فرد: {num}")