백준 10491번: Quite a problem #Python

ColorlessDia·2025년 5월 21일

algorithm/baekjoon

목록 보기
549/808
import sys

input = sys.stdin

for line in input:
    
    if 'problem' in line.rstrip().lower():
        print('yes')
    else:
        print('no')

0개의 댓글