Advertisement
Roman_Sarnov

Untitled

Aug 4th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. x = int(input()
  2. while x > 0:
  3. y = x
  4. while y > 0:
  5. y -= 1
  6. print(y)
  7. x -= 1
  8. print("Stop")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement