import java.util.List; public class LongestNondecreasingSubsequence { /* 17.12 */ public static int compute(List<Integer> A) { return 0; } }