eolymp
bolt
Try our new interface for solving problems
Problems

Remove even digits

Remove even digits

Time limit 1 second
Memory limit 128 MiB

Remove all even digits from the given positive integer.

Input data

One positive integer n (n10^18).

Output data

Print the number n with all even digits removed. If the original number n contains only even digits, print 0.

Examples

Input example #1
12345678901234
Output example #1
1357913
Input example #2
24642
Output example #2
0