+ 1
I can't get it to add the two input together without literally putting them next to each other. Can you guys help?
number1=input() number2=input() print (number1 + number2)
1 Answer
+ 7
If we input anything from the user then by default input is in the string so you need to convert the string into integer like that:
number1 = int(input)