본문 바로가기
python-algorithm

백준 10173 니모를 찾아서

by 무적김두칠 2021. 12. 2.

1
2
3
4
5
6
7
ㅇwhile 1:
    s=input()
    if s=='EOI': break
    else:
        s=s.lower()
        if 'nemo' in s:print("Found")
        elseprint("Missing")
cs
반응형

'python-algorithm' 카테고리의 다른 글

백준 8741 이진수 합  (0) 2021.12.03
백준 7600 문자가 몇갤까  (0) 2021.12.03
백준 3049 다각형의 대각선  (0) 2021.11.30
백준 3047 ABC  (0) 2021.11.30
백준 2998 8진수  (0) 2021.11.30

댓글