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