N, X = map(int, input().split(' '))
A = list(input().split(' '))

sysout = ''
for i in A:
    if(int(i) < X):
        sysout += str(i) + ' '
        
print(sysout[:-1])

'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글

Baekjoon 4344번(python)  (0) 2019.04.27
Baekjoon 1546번(python)  (0) 2019.04.27
Baekjoon 10817번(python)  (0) 2019.04.27
Baekjoon 9498번(python)  (0) 2019.04.27
Baekjoon 15552번(python)  (0) 2019.04.27

(기본 if문 사용)

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

if(a >= b):
    if(a >= c):
        if(b >= c):
            print(b)
        else:
            print(c)
    else:
        print(a)
else:
    if(b >= c):
        if(a >= c):
            print(a)
        else:
            print(c)
    else:
        print(b)

(파이썬 문법 특징 사용)

data = list(input().split(' '))

for i in range(len(data)
    data[i] = int(data[i])

sorted_list = sorted(data, reverse = True)
print(sorted_list[1])

'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글

Baekjoon 1546번(python)  (0) 2019.04.27
Baekjoon 10871번(python)  (0) 2019.04.27
Baekjoon 9498번(python)  (0) 2019.04.27
Baekjoon 15552번(python)  (0) 2019.04.27
Baekjoon 11721번(python)  (0) 2019.04.25

score = int(input())

if(score >= 90 and score <= 100):
    print('A')
elif(score >= 80 and score <= 89):
    print('B')
elif(score >= 70 and score <= 79):
    print('C')
elif(score >= 60 and score <= 69):
    print('D')
else:
    print('F')

'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글

Baekjoon 10871번(python)  (0) 2019.04.27
Baekjoon 10817번(python)  (0) 2019.04.27
Baekjoon 15552번(python)  (0) 2019.04.27
Baekjoon 11721번(python)  (0) 2019.04.25
Baekjoon 11720번(python)  (0) 2019.04.25

import sys
T = int(input())

for _ in range(T):
    data = sys.stdin.readline().split(' ')
    print(int(data[0]) + int(data[1]))
    

'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글

Baekjoon 10817번(python)  (0) 2019.04.27
Baekjoon 9498번(python)  (0) 2019.04.27
Baekjoon 11721번(python)  (0) 2019.04.25
Baekjoon 11720번(python)  (0) 2019.04.25
Baekjoon 8393번(python)  (0) 2019.04.25

words = input()

wordlen = len(words)
if(wordlen > 100 or wordlen < 1):
    raise ValueError('error')

printable = (wordlen // 10)
for i in range(printable):
    print(words[i * 10:10 * (i + 1)])
print(words[(printable) * 10 : (printable + 1) * 10])

'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글

Baekjoon 9498번(python)  (0) 2019.04.27
Baekjoon 15552번(python)  (0) 2019.04.27
Baekjoon 11720번(python)  (0) 2019.04.25
Baekjoon 8393번(python)  (0) 2019.04.25
Baekjoon 1924번(python)  (0) 2019.04.25