import java.util.*;
public class HelloWorld{
public static void main(String []args){
System.out.println("Hello World");
PriorityQueue<Integer> temp = new PriorityQueue<Integer>();
temp.add(10);
temp.add(1);
temp.add(64);
temp.add(3);
while(!temp.isEmpty()){
System.out.println(temp.poll());
}
}
}