# Problem
* Arithmetic Operators.
* Assignment Operators.
* Bitwise Operators.
* Relational Operators.
* Logical Operators.
Match the operators to the operator types.
* `= += -= *= &= |=`.
* `|| && !`.
* `& | ^ ~ << >>`.
* `+ - / * % ++ --`.
* `> < >= <= == !=`.
# Process
...
# Answer
* Arithmetic Operators - `+ - / * % ++ --`.
* Assignment Operators - `= += -= *= &= |=`.
* Bitwise Operators - `& | ^ ~ << >>`.
* Relational Operators - `|| && !`.
* Logical Operators - `> < >= <= == !=`.