Advertisement
DerioFT

1113.py

Oct 26th, 2021
619
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. while True:
  2.  
  3.     X, Y = input().split()
  4.     X, Y = int(X), int(Y)
  5.  
  6.     if X == Y:
  7.         break
  8.  
  9.     if X < Y:
  10.         print('Crescente')
  11.  
  12.     if X > Y:
  13.         print('Decrescente')
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement