# 1439 : Let's Compare!!!! from sys import stdin N=int(stdin.readline()) strST=[0]*2 S=0 T=1 strST[S]=stdin.readline().rstrip() strST[T]=stdin.readline().rstrip() Q=int(stdin.readline()) for i in range(Q): c,x,y=stdin.readline().split() x=int(x)-1 # y=int(y) if c=='S': tStr=S else: tStr=T strST[tStr]=strST[tStr][0:x]+y+strST[tStr][x+1:] intS=int(strST[S]) intT=int(strST[T]) if intS>intT: print('>') elif intS