#K64942. Find the Animal Habitat

    ID: 32087 Type: Default 1000ms 256MiB

Find the Animal Habitat

Find the Animal Habitat

In this problem, you will determine the natural habitat of a given animal. You are provided with a predefined list of animals and their corresponding habitats. If the animal is not on the list, output (\text{Unknown habitat}).

The mapping is as follows:
- Lion: Savannah
- Polar Bear: Arctic
- Kangaroo: Australia
- Panda: Forest
- Penguin: Antarctica
- Dolphin: Ocean

Your program should read a single line from standard input representing the name of an animal and output its natural habitat to standard output.

inputFormat

A single line containing the name of an animal. The input is read from standard input (stdin).

outputFormat

A single line representing the natural habitat of the animal. If the animal is not in the predefined list, print (\text{Unknown habitat}) to standard output (stdout).## sample

Lion
Savannah

</p>