import java.util.concurrent.locks.ReentrantLock;
public class test{
public static void main(String[] args)
{
ReentrantLock r1 = new ReentrantLock();
r1.lock();
System.out.println("Only one thread can write this at a time");
r1.unlock();
}
}