0
Here my code
x=input() y=input() x=6 y=3 z=x+y print(z)
3 odpowiedzi
+ 2
Dennis Onoja
Yes there is a problem in your code. You have to remove Hard Code value and use input variables to get sum.
Here you can learn how to take numeric input and do such a operation like addition, subtraction etc.
https://www.sololearn.com/post/1159836/?ref=app
+ 1
Python input is accepted as a string. You have to use the int method with your input.
0
It showing that I have a bug