def adder(x, y): return x + y print(adder(5, 1.0)) print(adder('hack', 'code')) print(adder(['a', 'b'], ['c', 'd']))