Problems
Odd divisors
Odd divisors
Print all odd divisors for positive integer **n**.
Input data
One positive integer n~(n \le 10^5).
Output data
Print all odd divisors for number n. Print each divisor in a separate line.
Examples
Input example #1
12
Output example #1
1 3