def add(a,b): return(a + b) print(add("2","2")) print(add(2,2)) print(add(range(2), range(2)))