The correct answer choice that explains the issue and how to fix it is:
The inputs are strings. If num1 = "3" and num2 = "7", the strings are concatenated so plus = "37". In this case, the output is "The sum of your numbers is 37". To fix, you need to convert num1 and num2 to integers. One way would be to wrap the input statements. Line 1 & 2 would read the following:
num1 = int(input("Input a number: "))
num2 = int(input("Input a second number: "))
Explanation
The issue arises because the input()
function in Python returns a string, and when you use the +
operator on strings, it concatenates them instead of adding their numeric values. In your example, if num1
is "3" and num2
is "7", the variables are combined as strings to produce "37". To perform an arithmetic addition, you need to convert the strings to integers using the int()
function.