以下のコードで論理演算子`||`(OR)を使った条件の実行結果はどうなりますか? ```ruby age = 15 student = true if age >= 20 || student puts "割引対象です" else puts "割引対象外です" end ```