본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 28074번 모비스

by 현장 2023. 5. 29.

-Code

s = input()
flag = True

for word in ['M', 'O', 'B', 'I', 'S']:
    if word not in s:
        flag = False
        break
print("YES" if flag else "NO")