Area

Write a function area that takes two integers as input: length and width, then calculates the area as length * width. Give the function a default value of 4 for width.

Example

Input

area(2,1)
area(3)

Return

2
12