Computer Science, asked by sapnasajwal333, 8 months ago

7. WAP to initialise two number. then display sum of the unit digits of those two
number.​

Answers

Answered by SherinShaju
1

Answer:

n=int(input("enter a number"))

m=int(input("enter a number"))

while n>0 and m>0

f=m%10

d=n%10

s=d+f

print("sum of unit digits are",s)

hope it helps u...

plzzz mark me as brainliest ....

Similar questions