In [3]:
x = 4
y = 3

In [7]:
if x > y:
    print('x maior que y')
else:
    print('y é maior que x')


x maior que y

In [ ]: