import java.io.PrintStream; import java.io.PrintWriter; import java.util.Scanner; public class Main_yukicoder232 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Printer pr = new Printer(System.out); int t = sc.nextInt(); int a = sc.nextInt(); int b = sc.nextInt(); int d = Math.max(a, b); if (t >= d && (d != 0 || t != 1)) { pr.println("YES"); int x = 0; int y = 0; for (int i = 0; i < t; i++) { d = Math.max(Math.abs(b - x), Math.abs(a - y)); if (d % 2 == (t - i) % 2) { if (a - y > 0 && b - x > 0) { pr.println("^>"); x++; y++; } else if (a - y > 0 && b - x == 0) { pr.println("^"); y++; } else if (a - y > 0 && b - x < 0) { pr.println("^<"); y++; x--; } else if (a - y == 0 && b - x > 0) { pr.println(">"); x++; } else if (a - y == 0 && b - x == 0) { pr.println(">"); x++; } else if (a - y == 0 && b - x < 0) { pr.println("<"); x--; } else if (a - y < 0 && b - x > 0) { pr.println("v>"); x++; y--; } else if (a - y < 0 && b - x == 0) { pr.println("v"); y--; } else if (a - y < 0 && b - x < 0) { pr.println("v<"); y--; x--; } } else { if (a - y > 0 && b - x > 0) { pr.println(">"); x++; } else if (a - y > 0 && b - x == 0) { pr.println("^>"); x++; y++; } else if (a - y > 0 && b - x < 0) { pr.println("^"); y++; } else if (a - y == 0 && b - x > 0) { pr.println("^>"); y++; x++; } else if (a - y == 0 && b - x == 0) { pr.println(">"); x++; } else if (a - y == 0 && b - x < 0) { pr.println("v<"); y--; x--; } else if (a - y < 0 && b - x > 0) { pr.println(">"); x++; } else if (a - y < 0 && b - x == 0) { pr.println("v>"); x++; y--; } else if (a - y < 0 && b - x < 0) { pr.println("v"); y--; } } } } else { pr.println("NO"); } sc.close(); pr.close(); } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }