public class Lab3 { /** Sleeps for the supplied number of milliseconds */ public static void sleep(int ms) { try { Thread.sleep(ms); } catch (Throwable t) { } } /**
  1. Make one {@link SwapUm} object
  2. Instantiate and start 100 {@link Fun} objects
*/ public static void main(String args[]) { } }