public class T1 extends Thread{
	private C c;
	


	public T1(C c){
		this.c = c;
	}


	
	public void run(){
		while(true){
			synchronized(c){
				c.increment();
			}
		}
	}
}	
