If you enter
i=2
while i <=5:
print (i)
i+=2
in Python the output is:
2
4
5th Feb 2020, 5:02 PM
Blabla Blablabla
0
As you haven't used brackets .... In case of java, c it will be an infinite loop as i will not be incremented.
A suggestion: while asking question specify the language you are using.