Computer Science, asked by yashbro546, 5 months ago

wap to input any 3 digit number and find the sum of all the digit python​

Answers

Answered by keshavsidhu223
0

Answer:

fluff downtown and I don't

Answered by gaganadithyareddy9
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