2025-05-19 20:51:01 +09:00

4 lines
94 B
Python

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