In our area()
function we take in our arguments and print the result using the print function within. However, in real-world cases, we might want to receive the calculated result back from the function. We can do that using the return statement.
Using the return statement we can send the result of the operation back outside the function, where it can be used for further operations.