#ABC255A. [ABC255A] You should output ARC, though this is ABC.

[ABC255A] You should output ARC, though this is ABC.

Score : 100100 points

Problem Statement

Given integers RR, CC, and a 2×22 \times 2 matrix AA, print AR,CA_{R,C}.

Constraints

  • All values in input are integers.
  • 1R,C21 \le R,C \le 2
  • 0Ai,j1000 \le A_{i,j} \le 100

Input

Input is given from Standard Input in the following format:

RR CC

A1,1A_{1,1} A1,2A_{1,2}

A2,1A_{2,1} A2,2A_{2,2}

Output

Print the answer as an integer.

1 2
1 0
0 1
0

We have A1,2=0A_{1,2}=0.

2 2
1 2
3 4
4

We have A2,2=4A_{2,2}=4.

2 1
90 80
70 60
70

We have A2,1=70A_{2,1}=70.