← Back to List

10491번: Quite a problem ↗

Solutions

Python 3
155 B | 155 chars
from sys import stdin
lines = stdin.readlines()
for i in lines:
    i = i.lower()
    if 'problem' in i:
        print("yes")
    else:
        print("no")