n,m = map(int, input().split())
l = [input().split() for _ in range(n)]
x,y = map(int, input().split())
print(l[x-1][y-1])