def square(x): # def means "to define" return x*x # this block belongs to the boss statement print(square(5))