def rectangle(a, b):
        area = a * b
        return area
     
    #Calling the function using two sample values
    print(rectangle(2,3))