In [ ]:
x = 10
print(x)
10
In [ ]:
def square(x):
    return x*x
In [ ]:
print(square(6))
36