以下のコードの実行結果はどうなりますか? ```ruby score = 75 if score >= 80 puts "優秀" elsif score >= 70 puts "良好" else puts "普通" end ```