알고리즘/백준

백준-5597번(과제 안내신 분?)-python

nyeongha 2023. 11. 23. 03:13

백준-5597번(과제 안내신 분?)-python

list1=[i for i in range(1,31)]
for i in range(28):
    list1.remove(int(input()))
print(list1[0])
print(list1[1])