public class Lab3 { /** Sleeps for the supplied number of milliseconds */ public static void sleep(int ms) { try { Thread.sleep(ms); } catch (Throwable t) { } } /**