以下のコードの実行結果はどうなりますか? ```typescript let price: number = 1000; let tax: number = 0.1; let total = price + (price * tax); console.log(typeof total); ```