input()
l = list(map(int, input().split()))
print('sorted' if l == sorted(l) or l == sorted(l, reverse=True) else 'unsorted')