string_number = (input()) odd_number = [int(i) for i in string_number if int(i) % 2 != 0] print(odd_number)