x = set()
y = set()
x.add(1)

def f1(x):
    return x*x

def f2(x):
    return x**2 # "ao quadrado"
