What will be the output of the following program?
public class CanYou extends Thread {
public CanYou() {
setPriority(11);
}
public void run() {
System.out.println("Run Priority = " + Thread.currentThread().getPriority());
}
public static void main(String[] args) {
System.out.println("Main Priority = " + Thread.currentThread().getPriority());
new CanYou().run();
}
}