I have used python 3.7 compiler for debugging purpose.
num = int(input("Input a four digit numbers: "))
a = num //1000
a1 = (num - a*1000)//100
a2 = (num - a*1000 - a1*100)//10
a3 = num - a*1000 - a1*100 - a2*10
print("The sum of digits in the number is", a+a1+a2+a3)
I have used python 3.7 compiler for debugging purpose.
Result:
Input a four digit numbers: 1234
The sum of digits in the number is 10
need an explanation for this answer? contact us directly to get an explanation for this answer