Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

public class Main {

public static void main(String[] args) {


// TODO Auto-generated method stub

MyThread t1 = new MyThread(20, 30, "USCLN");


MyThread t2 = new MyThread(20, 30, "BSCNN");

t1.start();
t2.start();
}

You might also like