← Back to List

10173번: 니모를 찾아서 ↗

Solutions

Python 3
154 B | 154 chars
a=""
while 1:
    a=input()
    if a == "EOI":
        break
    a=a.lower()
    if "nemo" in a:
        print("Found")
    else:
        print("Missing")