 
 
 
contains takes as argument a list (or a set) 
L and a value c.
contains tests if c is an element of the list L.
 contains returns 0 if c is not in L, 
or a strictly positive integer which is 
1+the index of the first occurence of c in L.
Input :
Output :
Input :
Output :
 
 
