Score : $100$ points
Given integers $R$, $C$, and a $2 \times 2$ matrix $A$, print $A_{R,C}$.
Input is given from Standard Input in the following format:
$R$ $C$ $A_{1,1}$ $A_{1,2}$ $A_{2,1}$ $A_{2,2}$
Print the answer as an integer.
1 2 1 0 0 1
0
We have $A_{1,2}=0$.
2 2 1 2 3 4
4
We have $A_{2,2}=4$.
2 1 90 80 70 60
70
We have $A_{2,1}=70$.