Created
June 11, 2022 14:42
-
-
Save kunishi/6c9ea8e3e03cbd60325b295af8ed3b22 to your computer and use it in GitHub Desktop.
AtCoder ABC255 Problem A
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
R, C = map(int, input().split()) | |
A = [] | |
for i in range(2): | |
A.append(list(map(int, input().split()))) | |
print(A[R - 1][C - 1]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment