In the sample problem, for a given number n. the goal is to compute the probability that randomly chosen integer from a range with uniform distribution is divisible by at least one of integers or .
Constraints:
Input format:
In the first and only line of the input there is one integer n.
Output format:
In a single line, output two space separated integers p and q, such that the probability o choosing an integer from a range which is divisible by either or is equal to and p and q don't have common divisors greater than 1.
There are integers in a range divisible by at least one of integers or , thus the probability of randomly choosing such an integer is equal to which is equal to after a simplification.