Given a sequence of integer numbers, print the first pair and with exactly an integer in the middle, and such that the remainder of divide by 100 is 1.
Input is a sequence of, at least, three integer numbers. In absolute value, none of them is greater than 1000000.
Your program must print the first pair of integer numbers and with exactly an integer in the middle in the input sequence, and such taht the remainder of divide by 100 is 1. If this pair does not exist, indicate it. Follow the format of the examples.
Be careful with the modulo of negative numbers!
Input
5 10 -3 20 204 81 18
Output
-3 204
Input
1 2 3 4 5 6 7 8 9 10
Output
The searched pair does not exist.
Input
-1000 0 1
Output
-1000 1