以下のコードでモジュール内の関数に引数を渡す正しい方法はどれですか? ```python # math_utils.py def calculate_area(radius): return 3.14 * radius * radius ```