#C11519. Animal Spirit Amulet
Animal Spirit Amulet
Animal Spirit Amulet
In an ancient tradition, every citizen is assigned an amulet that reveals their animal spirit. The amulet bears a secret: it is linked to a specific animal that symbolizes the citizen's inner strength.
You are given a citizen's name. If the citizen is recognized, output a string in the format Name-Spirit
, where Name
is the given citizen's name and Spirit
is the corresponding animal. The associations are given by the following mapping:
- Anara \(\rightarrow\) Falcon
- Bryndel \(\rightarrow\) Wolf
- Leilan \(\rightarrow\) Tiger
- Merek \(\rightarrow\) Bear
- Taryn \(\rightarrow\) Eagle
- Zephyra \(\rightarrow\) Dragon
If the citizen's name does not appear in this list, or if the input is empty, output Unknown Citizen
.
inputFormat
The input is provided in stdin as a single line containing the citizen's name.
outputFormat
Print the result to stdout. If the citizen's name is in the mapping, output it in the format Name-Spirit
; otherwise, output Unknown Citizen
.
Anara
Anara-Falcon