public class Shove {

    /** Rotate elements A[k] to A[A.length-1] one element to the
     *  right, where k is the smallest index such that elements k
     *  through A.length-2 are all larger than A[A.length-1]. */
    static void moveOver(int[] A) {

    }

}
