addition of the two number in the python
# input in the python
print("Enter the value which you want add First Number")
getinputval1 = input()
print("Enter the value which you want add Second Number")
getinputval2 = input()
print("Your value addition is",int(getinputval1) + int(getinputval2))
Thanks you for commenting your questions. I will see question and respond you.