以下のコードの実行結果で、どの部分にエラーが発生する可能性がありますか? ```python name = "田中" age = 25 message = "私は" + name + "で、" + age + "歳です" print(message) ```