#!/usr/bin/python

# commentaire1
msg = "toto"

if level == 'admin':
    print "Hello master !" # commentaire2
else:
    print "Hello"

print msg

