/// Name: Koosha Kimelman
/// Period: 7
/// Program Name: Ten Times
/// File Name: TenTimes.java
/// Date Completed: 12/8/15
public class TenTimes {
public static void main(String[] args) throws Exception {
for (int n = 1; n <= 10; n++) {
System.out.println(n + ". Mr. Davis is cool.");
Thread.sleep(50);
}
}
}