def AreaofRectangle(width, height): Area = width * height print("Area of a Rectangle is: %.2f" %Area) AreaofRectangle(8, 6)