
public class MyThread implements Runnable {

	int id;
	Count count;
	
	public MyThread(int i, Count c) {
		id = i;
		count = c;
	}
	
	
	@Override
	public void run() {
		count.inc();
		//System.out.println("Hi " + id);
		count.show();
		Delay.spin();
		//System.out.println("Bye " + id);
		count.dec();
		count.show();
	}

}

