Limits 1s, 512 MB

A lioness is trying to hunt down a buffalo. The lioness spots a buffalo aa metres away. As soon as she sees the buffalo, the buffalo spots her as well, and starts running. The lioness immediately starts chasing after her. If the lioness is bb times faster than the buffalo, how far will she have to run before she can capture the buffalo?

Input

The input consists of two integer numbers, denoting the values of aa and bb respectively, as described above.

Constraints:

2a,b1042 \leq a,b \leq 10^4

Output

It can be proven that the distance which the lioness will have to run is a rational number, that is it can be written in the form of a fraction p/qp/q. Output two space-separated integers pp and qq, so that p/qp/q is the answer to this problem. You must output the fraction in its fully reduced form, (e.g. if the answer to the problem is 8/48/4, you must output 22 and 11 since 2/12/1 is the reduced form of 8/48/4).

Sample

InputOutput
4506 85
63835 14

Submit

Login to submit.

Statistics

85% Solution Ratio
TanbeerEarliest, Apr '21
Being_GoromFastest, 0.0s
nav99X_EWULightest, 0 B
Nusab19Shortest, 81B
Toph uses cookies. By continuing you agree to our Cookie Policy.