public class TThread4 {
    public static void main (String[] args) {
        Thread t1=new Thread(new PrintNbusy(1));
        Thread t2=new Thread(new PrintNbusy(2));
        t1.setPriority(1);
        t2.setPriority(2);
        t1.start();
        t2.start();
   }
}
