import java.util.Random;public class Test {
  
  public static void main(String[] args) {
  int current,next;
  Random rand = new Random();
  current = rand.nextInt(10000);
  System.out.print(current);
  for(int i = 0 ; i < 25 ; i ++)
  {
    next = rand.nextInt(10000);
    if(current < next)
    {
      System.out.print(" < ");
    }
    else if(current == next)
    {
        System.out.print(" = ");
    }
    else
    {
        System.out.print(" > ");
    }
    System.out.println(next);
    current = next;
  }
  }
}