


# 백준 #28938 (Конвейер)
# N 입력
N = int(input())
# -1, 0, 1 입력
## -1 : 왼쪽으로 1인치 이동
## 0 : 왼쪽으로 1인치 이동
## 1 : 오른쪽으로 1인치 이동
Direction_List = list(map(int,input().split()))
# print(Direction_List)
Result = 0
for i in (Direction_List) :
if i == 1 :
Result = Result + 1
if i == 0 :
Result = Result
if i == -1 :
Result = Result - 1
# Right or Stay 출력하기
# print (Result)
if Result < 0 :
print("Left")
elif Result == 0 :
print("Stay")
elif Result > 0 :
print("Right")