백준 10871번 X보다 작은 수 파이썬
N, X = map(int, input().split()) Alist = map(int, input().split()) for i in Alist: if i < X: print(i , end=" ")