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

[백준/파이썬] 32969번 학술대회 참가신청

by 현장 2024. 12. 18.

-Code

s = input()
digital = ["social", "history", "language", "literacy"]

for el in digital:
    if el in s:
        print("digital humanities")
        exit()
print("public bigdata")