py-repo

a python playground
Index Commits Files Refs README
guia03/ex20.py (98B)
   1 x = int(input("X: "))
   2 y = int(input("y: "))
   3 
   4 if (x > y):
   5     print("x > y")
   6 else:
   7     print("x < y")
   8 
   9 
  10