diff --git a/easy/jungle-camping/JungleCamping.py b/easy/jungle-camping/JungleCamping.py index 89a3149..504ebee 100644 --- a/easy/jungle-camping/JungleCamping.py +++ b/easy/jungle-camping/JungleCamping.py @@ -1,4 +1,10 @@ +""" animals = {"Grr": "Lion", "Rawr": "Tiger", "Ssss": "Snake", "Chirp": "Bird"} noise = input().split() print(' '.join(map(animals.get, noise))) + +""" + + +print(input().replace("Grr","Lion").replace("Rawr","Tiger").replace("Chirp","Bird").replace("Ssss","Snake"))