给定两个非递减有序整数数组,把它们合并为一个非递减有序数组后输出。
第一行两个整数 n、m(0 ≤ n,m ≤ 10^5,n+m ≥ 1);第二行 n 个整数(n=0 时为空行);第三行 m 个整数(m=0 时为空行)。
一行,n+m 个整数,空格分隔。