백준 10871번 X보다 작은 수 파이썬
2022.03.07 16:15
백준 10871번 X보다 작은 수 파이썬 코드이다.
n, x = map(int, input().split())
a = list(map(int, input().split()))
m = []
for i in a:
if x > i:
m.append(str(i))
print(' '.join(m))