s = input()

s1 = ""

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

print(s1)