We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95fbe27 commit ad690b3Copy full SHA for ad690b3
10871.py
@@ -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