import java.util.Scanner;
public class Main {
public static void main(String[] args) {
/**
* #10871) X보다 작은 수
* 정수 N개로 이루어진 수열 A와 정수 X,
* 이때 A에서 X보다 작은 수를 모두 출력하기
*
* ex) 10 5
* 1 10 4 9 2 3 8 5 7 6
*
* -> 1 4 2 3 // 적어도 하나 존재
*/
Scanner scanner = new Scanner(System.in);
// System.out.println("N : ");
int N = scanner.nextInt();
// System.out.println("X : ");
int X = scanner.nextInt();
int[] arr = new int[N];
for (int i = 0; i < N; i++) {
arr[i] = scanner.nextInt();
}
for (int i = 0; i < arr.length; i++) {
if (arr[i] < X) {
System.out.print(arr[i] + " ");
}
}
}
}
www.acmicpc.net/problem/10871