nums = list(map(int, input().split()))
ans = []
for x in nums:
if (x // 100) % 2 == 1:
ans.append(x)
print(*ans)
Объяснение:
nums = list(map(int, input().split()))
ans = []
for x in nums:
if (x // 100) % 2 == 1:
ans.append(x)
print(*ans)
Объяснение: