prog7_13.py

PI = 3.14

def add(x, y):
    return x + y

def mul(x, y):
    return x * y

print("mymathの初期化完了!")

# プログラム7-13(モジュールmymathを作る)