Help me in solving PYPRACREARR3 problem

My issue

What if don’t initialize our variable in while loop

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

@yupkashish
This will be the correct rearrangement

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