class A implements Runnable
{
public void run()
{
System.out.println(Thread.currentThread());
//Thread.yield();
System.out.println(Thread.currentThread());
}
}
class Test