以下のコードで、どのような場合に「アクセス許可」が出力されますか? ```python age = 25 is_member = True has_permission = False if (age >= 18 and is_member) or has_permission: print("アクセス許可") else: print("アクセス拒否") ```