I was making a basic addition calculator and here is what that code looked like:
Number_1 = input("what number?")
Operator = "will be added"
print(Operator)
Number_2 = input("What is the next number?")
A = Number_1+Number_2
print(A)
The problem is if I put in 2 and 2 expecting to get 4, I get 22. I know what it is doing, joining the two numbers, but I don't really know how to fix this...