2179 - 【入门】合并数组

通过次数

21

提交次数

40

Time Limit : 1 秒
Memory Limit : 128 MB

给出两个数组A,B,请将数组B合并到数组A中,输出合并后的数组。

Input

输入三行

第一行两个整数n和m,分别表示数组A和数组B的元素个数。

第二行:数组A中的元素

第三行:数组B中的元素

Output

合并后的数组

Examples

Input

5 5
1 2 3 4 5
6 7 8 9 10

Output

1 2 3 4 5 6 7 8 9 10