728x90
X보다 작은 수
# 10871
N, X = map(int, input().split())
A = list(map(int, input().split()))
for i in A:
if i < X:
print(i, end = ' ')
728x90
'Algorithm' 카테고리의 다른 글
백준 1018 파이썬 (0) | 2022.01.11 |
---|---|
백준 10951 파이썬 (0) | 2022.01.10 |
백준 10818 파이썬 (0) | 2022.01.10 |
백준 2178 파이썬 (BFS)풀이 (0) | 2022.01.10 |
백준 10809 파이썬 (0) | 2022.01.09 |