Problem: You are given an array consisting of integers.
Your task is to say the number of such positive integers such that divides each number from the array. In other words, you have to find the number of common divisors of all elements in the array.
For example, if the array will be , then and divide each number from the array (so the answer for this test is ).
Input Format: The first line of the input contains one integer () — the number of elements in .
The second line of the input contains integers (), where is the -th element of .
Output Format: Print one integer — the number of such positive integers such that divides each number from the given array (in other words, the answer is the number of common divisors of all elements in the array).