Time limit: 1s
Memory limit: 256MB
Input:
Output:
Andrei is taking basketball throws. He wants to score points.
As he doesn't have a lot of time, he wants to reach points from as few throws as possible. As you know, in basketball we can score using throws which get either or points.
If Andrei can't reach points, we should print No
(exactly as it is written). Otherwise, we will print two integers and , which represent the minimum number of two point, respectively three point throws Andrei is going to use.
Input data
The first line will contain a single integer, (), representing the amount of points Andrei scored.
Output data
The first and the only line of the output will either contain two integers, and , or otherwise the message No
if he cannot reach points.
Example 1
stdin
11
stdout
1 3
Example 2
stdin
33
stdout
0 11