Files
PS/boj/10781.py
2025-07-29 11:48:10 +09:00

12 lines
135 B
Python

n,x=map(int,input().split())
a=list(map(int,input().split()))
r=[]
for i in a:
if i<x:
r.append(i)
for i in r:
print(i,end=" ")