Skip to content
Snippets Groups Projects
17.py 84 B
Newer Older
hacker717's avatar
hacker717 committed
s = input()

s1 = ""

for i in s:
    if int(i) % 2 == 1:
        s1 += i

print(s1)