Computer Science, asked by 1809181, 9 months ago

write a program to find the sum of individual digits of a number in python​

Answers

Answered by kavya969095
3

Answer:

no1 = int(input("Enter the first number:"))

no2 = int(input("Enter the second number:"))

sum=(no1+no2)

print("The sum of two numbers is:",sum)

Explanation:

Don't try this in interpreter of python.

Similar questions