以下のコードを実行したときの結果はどうなりますか? ```ruby def configure_app(title:, width: 800, height: 600) puts "#{title}: #{width}x#{height}" end configure_app(title: "マイアプリ", height: 900) ```