A Very Special Multiple
Charlie and Johnny play a game. For every integer X Charlie gives, Johnny has to find the smallest positive integer Y such that X * Y(X multiplied by Y ) contains only 4s and 0s and starts with one or more 4s followed by zero or more 0s.
For example, 404 is an invalid number but 4400, 440, and 444 are valid numbers.
If is the number of 4s and is the number of 0s, can you print the value of (2*a)+b?
Input:-3 4 5 80
Input Description: The first line of input contains a single integer T, the number of test cases. T lines follow, each line containing the integer X as stated above.
Output: 2 3 4
Output Description: For every X, print the output(2*a)+b in a newline as stated in the problem statement.
Constraints: 1<= T <=100 1<= X <= 10^10
Explanation: null