t,a,b=map(int,raw_input().split()) m=max(a,b) if m>t: print"NO" exit() if t==1: if m==0: print"NO" else: print"YES" s="" if a>0: s+="^" if b>0: s=">" print s exit() print"YES" v,w=b-1,a-1 x=y=0 while x!=v or y!=w: s="" if xv: s+="<" x-=1 if yw: s+="v" y-=1 print s t-=1 while t>0: if t==1: print"^>" t-=1 elif t==2: print">" print"^" t-=2 else: print">" print"<" t-=2