#A. ARC106A - 106

    Type: Default 1000ms 256MiB

ARC106A - 106

You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.

Score : 300 points

Problem Statement

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

Constraints

  • 1N1018
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

N

Output

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

If there is such a pair, print A and B 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=106, so (A,B)=(4,2) satisfies the condition.


Sample Input 2

1024

Sample Output 2

-1

Sample Input 3

10460353208

Sample Output 3

21 1

ARC106

Not Attended
Status
Done
Rule
IOI
Problem
6
Start at
2023-7-5 8:15
End at
2023-7-5 10:15
Duration
2 hour(s)
Host
Partic.
13