inp = input("Вхідні данні: ")
inp = inp.split(" ")
for i in range(len(inp)):
inp[i] = int(inp[i])
text = ""
for j in inp:
if j % 2 != 0:
text += f"{j} "
print(text)
Объяснение:
inp = input("Вхідні данні: ")
inp = inp.split(" ")
for i in range(len(inp)):
inp[i] = int(inp[i])
text = ""
for j in inp:
if j % 2 != 0:
text += f"{j} "
print(text)
Объяснение: