#include <stdio.h>int main(){int i, n, m, temp;scanf("%d %d", &n, &m);for (i = 0; i<n; i++){scanf("%d", &temp);if (m > temp)printf("%d ", temp);}return 0;}
'백준' 카테고리의 다른 글
[4344] 평균은 넘겠지 (0) | 2018.05.14 |
---|---|
[1546] 평균 (0) | 2018.05.14 |
[10817] 세 수 (0) | 2018.05.14 |
[9498] 시험 성적 (0) | 2018.05.14 |
[4673] 셀프 넘버 (0) | 2018.05.14 |