def double_input(val): val = 2*val return val def triple_input(val): return val*3 val = 10 print(double_input(val)) print(triple_input(val))