#! /usr/bin/python
def somme(n):
    s= 0
    for i in [n]:
         s = s+i
   return s
print suite(4)