Chasing Chmyaaax
You have learned that the evil Chmyaaax has escaped to the Link-Cut system, and you have set out to pursue him. Unfortunately, after his defeat, he managed to do one little dirty trick: he broke your fuel tank, and now it's empty. Now you have only one means of transportation left: Gravitational maneuvers!
The space where the events take place can be represented as a -plane. Initially, you are at position . There are meteors in the space, each determined by its location . Since your ship was built by Lucy, gravitational maneuvers work non-standardly. Specifically, you can choose two meteors and mirror your position relative to the middle of the path between them. There is an infinite vertical line at = coordinate that separates our Solar system from the Link-Cut system. To enter the Link-Cut system your -coordinate needs to be at least .
Formally, let be the position of the -th meteor and let be your initial position. Then each maneuver can be described by a pair of indices and :
If your current position is , then it will become .
Here is the example of how maneuver works:
Maneuver from point to point relative to the middle of the way between meteors and
Now Lucy is preparing the ship for maneuvers and she needs to know the minimum number of maneuvers required for you to enter the Link-Cut system. Help her with this challenging task or determine it is impossible.
Input
The first line contains two integers and — the number of meteors and the -coordinate, from which the Link-Cut system starts off.
The second line contains two integers and — your initial position.
Each of the next lines contains a pair of integers and — the location of the -th meteor.
Please note that some positions (including yours) can be the same.
Output
In the only line, you need to output the minimum number of maneuvers required for you to enter the Link-Cut system. If it is impossible to reach it, output "Chmyaaaax has escaped
".
Examples
Note
The first example is shown in the picture in the statement: is your initial point and is your new point after performing one maneuver relative to the middle of the way between the only two meteors. , which means that you will enter the Link-Cut system after this operation. And initially your -coordinate is , which is less than , thus the answer cannot be .
Scoring
( points): ;
( points): ;
( points): ;
( points): no additional constraints.