D) Explain and predict the output of following python program.3x2
1) a=100
b=20
s=0
while a>=b
if a%b==0
s=s+a
a=a-1
print (s)
Answers
Answered by
0
Answer:
output of the program
s=100
a=99
Similar questions