def fick(x): if x > 10: print('True') elif x <= 10: print('False') a = fick(11)