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

[백준/파이썬] 32399번 햄버거 정렬

by 현장 2024. 9. 30.

-Code

s = input()

if s == ")1(":
    print(2)
elif s == "(1)":
    print(0)
else:
    print(1)