def fun(n):
    print(n)
    n = n - 1
    return n

def fun2(x):
    x = x * x
    return x

k = 3
y = fun(k+1)
print(y)

x = fun2(y)
print(x)