Problem I
Þjarki
Languages
en
is

In his spare time Gunnar has programmed a small robot that follows arrows on the floor. His floor is divided into squares and he has put an arrow down on each square that points to one of its four adjacent squares.
Gunnar puts the robot down on a square on the ground. The robot looks at the arrow on the square its on and moves to the square the arrow is pointing to. The robot then repeats this, looks at the arrow on the cell it has moved to, follows it, and so on.
Gunnar isn’t quite sure whether the robot works as it should and doesn’t have the time to look after it, he has to go to work after all. Gunnar asks for your assistance. Given the square the robot starts on and how many steps the robot will take, can you help Gunnar determine what square the robot ends up on?
Input
The first line of the input contains two integers
Then there are
Then there will be a line with the integer
Output
For each query, print a single line with two integers
The robot will never move past the edge of the floor.
Scoring
Group |
Points |
Constraints |
1 |
15 |
|
2 |
15 |
|
3 |
15 |
|
4 |
15 |
|
5 |
15 |
|
6 |
25 |
No further constraints. |
Sample Input 1 | Sample Output 1 |
---|---|
3 4 >vv< >>>v ^<^< 3 1 1 5 3 1 7 1 4 2 |
3 4 2 3 2 3 |
Sample Input 2 | Sample Output 2 |
---|---|
1 5 ><<<< 2 1 5 3 1 2 2 |
1 2 1 2 |