def multi(x): if x < 3: return x - 100 else: return 2*x print multi(2),multi(4)