Title. Turn: ```cpp if (p == nullptr) ... if (x <= 5) ... ``` into ```cpp if (nullptr == p) ... if (5 >= x) ... ```