import sys def main(): H, W = map(int, input().split()) if H == W == 1: print('white') return N = int(input()) S = sys.stdin.read().splitlines() wb = '01' * (W // 2 + 1) puzzle = int(wb[:W], 2) col, row = 0, 0 for s in S[::-1]: if s == 'R ' + str(row): col = col - 1 if col > 0 else W - 1 elif s == 'C ' + str(col): row = row - 1 if row > 0 else H - 1 color = ('white', 'black') n = W - 1 - col i = bool(puzzle & (2 ** n)) if row % 2: i = not i print(color[i]) main()