In SQL the AND operator takes “precedence” over OR operator. PostgreSQL adheres to the spec here. You can the exact precedence in PostgreSQL in the docs Lexical Structure: Operator Precedence.
So in your case, the result will be the same. However, it’s much easier, and cleaner to simply use the parentheses.