import java.util.ArrayList;

class MyMethods {

  public static <T extends Comparable<? super T>> 
                void sort(ArrayList<T> list) {
    // implementation of sort appears here
  } // end sort
} // end MyMethods
