I'm slightly puzzled on this problem that I have with my Python program. It's a very simple program but it keeps coming up with a problem. Allow me to show you the code...
x=int(input('Enter number 1:'))
y=int(input('Enter number 2:'))
z=x+y
print('Adding your numbers together gives:'+z)
Now, this program, when I run it keeps on saying that "TypeError: Can't convert 'int' object to str implicitly".
I just want it to run normally.
Could anyone help?
Thanks.