Skip to content

Instantly share code, notes, and snippets.

@kunishi
Created June 11, 2022 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunishi/6c9ea8e3e03cbd60325b295af8ed3b22 to your computer and use it in GitHub Desktop.
Save kunishi/6c9ea8e3e03cbd60325b295af8ed3b22 to your computer and use it in GitHub Desktop.
AtCoder ABC255 Problem A
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