I have a very basic program which adds 2 numbers:
def addition(a, b):
print(a + b)
addition(input("Number 1: "), input("Number 2: "))
However, the console doesn't return what I want, not adding the numbers in the way I expect. EG:
Number 1: 2
Number 2: 3
23
The console sticks them together as if they are in a list, instead of performing arithmetic! How do I stop this happening? How am I meant to add them arithmetically?