WAP to input 2 digit no.Calculate and print the sum of the digits..
Chapter:-Python..
Class:-IX..
Answers
Answered by
1
Answer:
a=int(input("Enter a no:"))
b=int(input("Enter a no:"))
print("The sum of ",a," and ",b,"is ",a+b)
Explanation:
Similar questions