#Functions with Arguments
def square(number):
print('The entered number is ', number)
print('Square of ', number , 'is', number*number)
square(4)