The following function is supposed to use recursion to compu…
The following function is supposed to use recursion to compute the area of a square from the length of its sides. For example, squareArea(3) should return 9. def squareArea(sideLength: int) -> int : if sideLength == 1 : return 1 else : ____________________ What line of code should be placed in the blank to achieve this goal?