구현 (110)
n = int(input())
arr = list(input().split())
location = [1, 1]
# 입력값에 따라 이동
for move in arr:
if (move == 'L'):
location[1] -= 1
elif (move == 'R'):
location[1] += 1
elif (move == 'U'):
location[0] -= 1
elif (move == 'D'):
location[0] += 1
# 밖으로 나간 위치 교정
if (location[0] < 1):
location[0] += 1
elif (location[1] < 1):
location[1] += 1
#마지막 위치 출력
print(*location)
n = int(input())
arr = list(input().split())
x, y = 1, 1
# 입력값에 따라 이동
for move in arr:
if (move == 'L'):
y -= 1
elif (move == 'R'):
y += 1
elif (move == 'U'):
x -= 1
elif (move == 'D'):
x += 1
# 밖으로 나간 위치 교정
if (x < 1):
x += 1
elif (x > n):
x -= 1
elif (y < 1):
y += 1
elif (y > n):
y -= 1
#마지막 위치 출력
print(x, y)