i have an if statement that i need to spread over several lines so its not one long line that spreads from lands-end to john o'groats

Code:
if ((temp_take_piece[coordinate_x - 1][coordinate_y + (1 * multiplyer)] == 'b') || (temp_take_piece[coordinate_x - 1][coordinate_y + 1] == 'B')) || ((temp_take_piece[coordinate_x - 1][coordinate_y + (1 * multiplyer)] == 'w') || (temp_take_piece[coordinate_x - 1][coordinate_y + 1] == 'W'))
how can i do it please
coop