///Name: Conner Wygaerts
///Period: 6
///Project Name: EvenNumbers
///File Name: EvenNumbers.java
///Date Finished: 2/10/16
import java.util.Scanner;
public class EvenNumbers
{
public static void main( String[] args )
{
for ( int x = 0; x <= 20; x++ )
{
System.out.print(x + " ");
if ( x % 2 == 0 )
{
System.out.println(" < ");
}
else
{
System.out.println();
}
}
}
}