#example from lecture 9 sept i1 = eval(input('Give input: ')) i2 = eval(input('Give input: ')) r = i1 + i2 print (f'{type(i1)} + {type(i2)} becomes {type(r)} \nwith value {r}')