Given the statement below, rewrite it by adding parenthesis to explicitly show the order in which the various operations are evaluated. You can assume that all variables were declared and initialised elsewhere.
result = x > 10 && x < 100 || x == 200;
Hint: Consider the precedence level of different operators.