Advertisement
Jorell_Ramos_Sinaga

Untitled

Dec 19th, 2021
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. x=100
  2. y=1000
  3.  
  4. while x != y:
  5. x, y = map(int, input().split())
  6. if x > y:
  7. print('Decrescente')
  8. elif x < y:
  9. print('Crescente')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement