Help me in solving PYPRACREARR3 problem

My issue

Rearrange the code so that the code prints the numbers from 1 to 10.

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

@muradzadeh
this will be the correct rearrangement.

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