#!/usr/bin/python

animaux = [ 'chien', 'chat', 'girafe', 'hippopotame', 'chien', 'singe' ]

print "Saisir un nom d'animal"
animal = raw_input()

present = False

for mot in animaux:
    if animal == mot:
        present = True

if present:
    print animal + " est present dans le tableau"
else:
    print animal + " n\'est pas present dans le tableau"
