I am learning Python code. When I create a function it works fine but when I go to call the function I get a syntax error, what is wrong with my code?
>>> def someFunction(a,b):
print (a+b)
someFunction(12,451)
SyntaxError: invalid syntax