I am very new to the coding world and stuck on this issue.I am attempting to pass two numbers as inputs and join them together into a single string. The problem I am encountering is that my code performs an addition function rather than combining the numbers. my code is below with the results after.
import sys
number1 = int(sys.argv[1])
number2 = int(sys.argv[2])
newnumber = number1 + number2
print(newnumber)
Program Failed for Input: 123 456 Expected Output: 123456 Your Program Output: 579
Any suggestions?