← Back to List

28074번: 모비스 ↗

Solutions

Python 3
106 B | 106 chars
s = input()

for i in "MOBIS":
    if i not in s:
        print("NO")
        break
else:
    print("YES")