728x90
반응형

b보다 작은 수를 순서대로 출력해주면 된다.

a, b = map(int, input().split(" "))
c = list(map(int, input().split(" ")))

for i in range(a):
    if b > c[i]:
        print(c[i], end = " ")

728x90
반응형

+ Recent posts