4 lines
94 B
Python
4 lines
94 B
Python
arr = list(range(1,31))
|
|
for _ in range(28):
|
|
arr.remove(int(input()))
|
|
print(*arr, sep="\n") |