Computer Science, asked by diljotsinghdhillon, 9 months ago

write a Python program input of three digit number and display sum of the digits​

Answers

Answered by poetoftimes
5

Answer:

num1=(input('enter num 1 :'))

num2=(input('enter num 2 :'))

num3=(input('enter num 3 :'))

sum=num1+num2+num3

print(sum)

Similar questions