I'm trying to execute the following code and expected to get the result of the new age. But instead, I got a syntax error. Here is my code:
age = input('Enter your age:')
new_age = int age + 10**2
print(new_age)
And here is the error:
SyntaxError: invalid syntax