'''age = int(input("나이입력"))

if age<8:

    print('입장료는 무료')


else:

    print("입장료는 12000원")

'''

'''

sub= int(input("홀수? 짝수?"))

if sub%2==1:

     print('홀수')

           

else:

     print("짝수")

'''

''''


id=input("id를 입력해주세요")

pw=input("pw를 입력해주세요")


if id=="신송고"and pw=="1234":

    print("로그인 성공")

else:

    print ("실패띠")

'''


man=input("너 누구야???")


if man=="임산부" or man=="노약자":

   print("이용가능")


else:

    print("ㄴㄴ")