以下のメソッドを呼び出した結果はどうなりますか? ```ruby def calculate_total(price, tax = 0.1) price + (price * tax) end calculate_total(1000) ```