public class OldestTopArtist {
public static void main(String[] args) throws EchoNestException {
EchoNestAPI en = new EchoNestAPI();
List<Artist> artists = en.topHotArtists(100);
Collections.sort(artists,
new Comparator<Artist>() {
@Override
public int compare(Artist t1, Artist t2) {