#Lutece0239. Balance

Balance

Migrated from Lutece 239 Balance

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Gigel has a strange balance and he wants to poise it. Actually, the device is different from any other ordinary balance.

It orders two arms of negligible weight and each arm's length is 1515. Some hooks are attached to these arms and Gigel wants to hang up some weights from his collection of GG weights (1G20)(1 \leq G \leq 20) knowing that these weights have distinct values in the range 1251 \cdots 25. Gigel may droop any weight of any hook but he is forced to use all the weights.

Finally, Gigel managed to balance the device using the experience he gained at the National Olympiad in Informatics. Now he would like to know in how many ways the device can be balanced.

Knowing the repartition of the hooks and the set of the weights write a program that calculates the number of possibilities to balance the device.

Input

The input has the following structure:

the first line contains the number C(2C20)C (2 \leq C \leq 20) and the number G(2G20)G (2 \leq G \leq 20);

the next line contains CC integer numbers (these numbers are also distinct and sorted in ascending order) in the range 1515-15 \cdots 15 representing the repartition of the hooks; each number represents the position relative to the center of the balance on the XX axis (when no weights are attached the device is balanced and lined up to the XX axis; the absolute value of the distances represents the distance between the hook and the balance center and the sign of the numbers determines the arm of the balance to which the hook is attached: - for the left arm and + for the right arm); on the next line there are GG natural, distinct and sorted in ascending order numbers in the range 1251 \cdots 25 representing the weights' values.

The input contains multi-cases, process to the EOF.

Output

The output contains the number MM representing the number of possibilities to poise the balance.

Samples

2 4
-2 3
3 4 5 8
2

Note

1 : 数据保证结果不会使用到大数类。

2:尽量使用scanf printf,不然可能导致TLE。

The data used in this problem is unofficial data prepared by silentsky. So any mistake here does not imply mistake in the offcial judge data.

Resources

Romania OI 2002