Ad

You need to write a function that will take a string with some kind of arithmetic expression and return an answer with type int.

def calc(string):
    return int(eval(string))