import sys input = sys.stdin.readline import heapq N=int(input()) S=list(map(int,list(input().strip()))) T=list(map(int,list(input().strip()))) Q1=[] Q2=[] for i in range(N): if S[i]T[i]: Q2.append(i) Q=int(input()) for i in range(Q): c,x,y=input().split() x=int(x)-1 y=int(y) if c=="S": S[x]=y else: T[x]=y if S[x]T[x]: heapq.heappush(Q2,x) while Q1 and S[Q1[0]]>=T[Q1[0]]: heapq.heappop(Q1) while Q2 and S[Q2[0]]<=T[Q2[0]]: heapq.heappop(Q2) if Q1 and Q2: if Q1[0]") elif Q1: print("<") elif Q2: print(">") else: print("=")