Python
Code prints 5 which is correct answer for this task.
def int(a): return ~eval(a) def add(a,b): return int(a)+int(b) print ~add("2","2") Code prints 5 which is correct answer for this task.
def int(a): return ~eval(a) def add(a,b): return int(a)+int(b) print ~add("2","2")