n = int(input())
absent = list(map(int, input().split()))
for a in range(n, 0, -1): if a in absent: pass else: print('No.', a)
答案(記得感謝我)