본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 10871번 X보다 작은 수

by 현장 2021. 12. 26.

-코드

n, x = map(int, input().split())
arr = list(map(int, input().split()))
for i in arr:
    if i < x:
        print(i, end=' ')