import sys def main(): H, W = map(int, input().split()) if H == W == 1: print('white') return N = int(input()) S = sys.stdin.readlines() if W == 1: even = 0 odd = 1 else: n = W // 2 if W % 2: even = int('01' * n + '0', 2) odd = int('10' * n + '1', 2) else: even = int('01' * n, 2) odd = int('10' * n, 2) col, row = 0, 0 for s in S[::-1]: s = s.rstrip() 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 n = W - 1 - col color = ('white', 'black') if row % 2: i = bool(odd & (2 ** n)) else: i = bool(even & (2 ** n)) print(color[i]) main()