10 lines
187 B
Python
10 lines
187 B
Python
text = input().strip()
|
|
if ":(" in text and ":)" in text:
|
|
print("double agent")
|
|
elif ":)" in text:
|
|
print("alive")
|
|
elif ":(" in text:
|
|
print("undead")
|
|
else:
|
|
print("machine")
|