<https://www.acmicpc.net/problem/10871>
BOJ/백준 10871 - X보다 작은 수
n, x = map(int, input().split())
numbers = list(map(int, input().split()))
for number in numbers:
if number < x:
print(number, end=' ')
'알고리즘 문제 풀기 > BOJ' 카테고리의 다른 글
BOJ 2588 - 곱셈 (0) | 2019.07.15 |
---|---|
BOJ백준 1546 - 평균 (0) | 2019.04.05 |
BOJ백준 15552 - 빠른 A+B (0) | 2019.04.04 |
BOJ백준 11721 - 열 개씩 끊어 출력하기 (0) | 2019.04.04 |
BOJ백준 11720 - 숫자의 합 (0) | 2019.04.03 |