While loops in Python are written as follows:
while condition: body
while condition:
body
Python does not have do-while loops.
Fill in the placeholders so that the actual outputs match the expected outputs.