import mymath radius = float(input("円の半径は?")) area = mymath.PI * mymath.mul(radius, radius) print(f"面積は{area}です!") # プログラム7-14(モジュールmymathを使う)