public class Evens
{
public static void main( String[] args )
{
for (double x = 1; x <= 20; x++)
{
System.out.print(x);
if (x % 2 == 0)
System.out.println(" <");
else
System.out.println();
}
}
}