def main(): i=0 while(i<5): print("i={}".format(i)) i+=1 j=5 while(j>i): print("j={}".format(j)) j-=1 if __name__ == '__main__':main()