add: boj/10781.py
This commit is contained in:
11
boj/10781.py
Normal file
11
boj/10781.py
Normal file
@@ -0,0 +1,11 @@
|
||||
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=" ")
|
||||
|
||||
Reference in New Issue
Block a user