n=int(input())
m=list(map(int,input().split()))
if m==sorted(m) or m==sorted(m,reverse=True):
    print("sorted")
else:
    print("unsorted")