///Name: Dakota Donahue
///Period: 5
///Project Name:
///File Name:
///Date: 3/10/2016
public class NoticingEven
{
public static void main( String[] args )
{
for ( int x = 1; x <= 20; x = x+1 )
{
if ( x % 2 == 0 )
{
System.out.println( x + "<" );
}
else
{
System.out.println(x);
}
}
}
}