Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- x = 45
- y = 80
- while x < 50 and y < 100:
- x = x + 1
- y = y + 1
- print(x, y)
- print('we out of the loop')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement