Oddly Even
A positive integer may be written as an odd number times a power of 2. For instance 1234560 = 9645 * 27.

Input: A sequence of positive integers, each on a separate line.

Output: For each input integer n, there is an output line. It contains a comma separated pair of integers a, b such that n = a*2b.

Sample input:
2
96


Sample output:
1,1
3,5