PY
py
1
2
3
4
5
6
7
8
9
10
11
ss = {
"Grr": "Lion",
"Rawr": "Tiger",
"Ssss": "Snake",
"Chirp": "Bird"
}
s = input().split()
print(*(ss.get(i) for i in s))
# This also works:
# print(" ".join(ss.get(i) for i in s))
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run