/// Name: Koosha Kimelman
/// Period: 7
/// Program Name: Noticing Even Numbers
/// File Name: EvenNumbers.java
/// Date Completed: 12/10/15
public class EvenNumbers {
public static void main(String[] args) throws Exception {
for (int x = 1; x <= 20; x++) {
if (x % 2 == 0)
System.out.println(x + " <");
else
System.out.println(x);
Thread.sleep(20);
}
}
}