What will be the output of the following program?
public class Explosion {
public static void main(String[] args) {
System.out.println("getPriority = " + Thread.currentThread().getPriority());
System.out.println("getName = " + Thread.currentThread().getName());
}
}