CF540C Ice Cave
Description
You play a computer game. Your character stands on some level of a multilevel ice cave. In order to move on forward, you need to descend one level lower and the only way to do this is to fall through the ice.
The level of the cave where you are is a rectangular square grid of $ n $ rows and $ m $ columns. Each cell consists either from intact or from cracked ice. From each cell you can move to cells that are side-adjacent with yours (due to some limitations of the game engine you cannot make jumps on the same place, i.e. jump from a cell to itself). If you move to the cell with cracked ice, then your character falls down through it and if you move to the cell with intact ice, then the ice on this cell becomes cracked.
Let's number the rows with integers from $ 1 $ to $ n $ from top to bottom and the columns with integers from $ 1 $ to $ m $ from left to right. Let's denote a cell on the intersection of the $ r $ -th row and the $ c $ -th column as $ (r,c) $ .
You are staying in the cell $ (r_{1},c_{1}) $ and this cell is cracked because you've just fallen here from a higher level. You need to fall down through the cell $ (r_{2},c_{2}) $ since the exit to the next level is there. Can you do this?
Input Format
N/A
Output Format
N/A
Explanation/Hint
In the first sample test one possible path is:
![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF540C/04413b66d79b896482294c7b0e49f648ef0d4aba.png)
After the first visit of cell $ (2,2) $ the ice on it cracks and when you step there for the second time, your character falls through the ice as intended.