wap to input any 3 digit number and find the sum of all the digit python
Answers
Answered by
0
Answer:
fluff downtown and I don't
Answered by
0
Answer:
Hey this is in python...
num = input("Enter any three digit number: ")
sum = int(num[0]) + int(num[1]) + int(num[2])
print("Sum of all digits = ", sum)
# Hope this helps!!
Similar questions