Skip to content

Commit ad690b3

Browse files
committedMar 29, 2023
[#5] Feat: Add X보다 작은 수
1 parent 95fbe27 commit ad690b3

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
 

‎10871.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# X보다 작은 수
2+
3+
N, X = map(int, input().split(' '))
4+
numbers = list(map(int, input().split(' ')))
5+
count = 0
6+
7+
for number in numbers:
8+
if (number < X):
9+
print(number, end=' ')

0 commit comments

Comments
 (0)