가오리의 코딩일기
[10871] X보다 작은 수 본문
n, x = map(int,input().split())
result = list(map(int, input().split()))
for i in range(n):
if result[i] < x:
print(result[i], end=' ')
'Python > 백준' 카테고리의 다른 글
더하기 (0) | 2022.07.03 |
---|---|
[10872] 팩토리얼 (0) | 2022.06.19 |
[10995] 별 찍기 - 20 (0) | 2022.06.16 |
[2921] 도미노 (0) | 2022.06.15 |
[10569] 다면체 (0) | 2022.06.14 |