[백준] 10871번 : X보다 작은 수 (파이썬)

뚝딱이 공학도·2022년 1월 20일
0

문제풀이_백준

목록 보기
29/160

문제

나의 답안

n,x=map(int,input().split())
a=list(map(int,input().split()))
for i in range(n):
    if a[i]<x:
        print(a[i],end=' ')

배열-반복문
공백을 포함하여 출력하려면 end=' '를 해주면 된다.

0개의 댓글