Problem F
Rational Ratio
Every (positive) rational number can be expressed as a ratio
of two (positive) integers. However, in decimal form, rational
numbers often have an infinitely repeating pattern, e.g.,
Given a rational number consisting of a series of digits,
followed by a decimal point, followed by more digits, and then
a number indicating how many of the rightmost digits repeat
(i.e., the number of digits under the bar), your task is to
find the ratio of two integers, in the most reduced form, that
represent the same rational number. For example, for the input
“
Input
The input will be a single line with two numbers separated
by one space. The first number will consist of
Output
Print the corresponding fraction in its most reduced form, that is, the fraction with the smallest possible integer values in the numerator and denominator.
Sample Input 1 | Sample Output 1 |
---|---|
0.142857 6 |
1/7 |
Sample Input 2 | Sample Output 2 |
---|---|
1.6 1 |
5/3 |
Sample Input 3 | Sample Output 3 |
---|---|
123.456 2 |
61111/495 |