#arc106a. [arc106_a]106

[arc106_a]106

Problem Statement

Given is an integer NN. Determine whether there is a pair of positive integers (A,B)(A, B) such that 3A+5B=N3^A + 5^B = N, and find one such pair if it exists.

Constraints

  • 1leqNleq10181 \\leq N \\leq 10^{18}
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

Output

If there is no pair (A,B)(A, B) that satisfies the condition, print -1.

If there is such a pair, print AA and BB of one such pair with space in between. If there are multiple such pairs, any of them will be accepted.


Sample Input 1

106

Sample Output 1

4 2

We have 34+52=81+25=1063^4 + 5^2 = 81 + 25 = 106, so (A,B)=(4,2)(A, B) = (4, 2) satisfies the condition.


Sample Input 2

1024

Sample Output 2

-1

Sample Input 3

10460353208

Sample Output 3

21 1