以下のコードで空欄に入る演算子は何ですか? ```ruby age = 25 is_student = false result = age >= 20 _____ !is_student puts result # => true ```