这个解法简单但是这样不好

n = input()
list1 = list(map(int,input().split()))
delnum = int(input())
for i in list1:
    if i !=delnum:
        print(i,end=" ")