Help me in solving PYPRACREARR3 problem

My issue

rearrange the following code
while i <=10:
i=i+1
print(i)
i=1

Learning course: Practice Python
Problem Link: Rearrange Code Practice Problem in Python - CodeChef

@shrutijain4318
this will be the correct rearrangement

i = 1
while i <= 10:
    print(i)
    i = i + 1