Rewrite the following for loop into while loop.
for a in range(90,9,-9): print a
a = 90 while a > 9: print(a) a -= 9