I am a beginner in python and am using python 3.4. I am trying to build a simple calculator. However, I keep running into this odd bug that 'incorrectly adds numbers'. say I want to do 1+1, instead of getting 2 I am getting 11.
I have tried several ways to code the problem but I still end up getting a wrong answer.
numOne = input("what is ur first number:- ")
numTwo = input("what is ur second number:- ")
add = numOne + numTwo
print(add)
Say numOne = 1, and numTwo = 1. Instead of getting 2, I am getting 11.