반응형
https://www.acmicpc.net/problem/10871
# @Author YoungMinKim
# baekjoon
N,X = map(int,input().split())
A = map(int,input().split())
for i in A:
if i<X:
print(i, end=' ')
else:
continue
반응형
'백준 문제풀이' 카테고리의 다른 글
baekjoon - python - 10886 (0) | 2020.09.03 |
---|---|
baekjoon - python - 10872 (0) | 2020.09.02 |
baekjoon - python - 10870 (0) | 2020.09.02 |
baekjoon - python - 10869 (0) | 2020.09.02 |
baekjoon - python - 10818 (0) | 2020.09.02 |
댓글