Input Format:
The first input is an integer that denotes N, the size of the array.
The second input consists of a series of integers separated by a space that denotes the array values.
Output Format:
The output is an integer that denotes the maximum product continuous subarray.
Example:
Input:
5
6 -3 -10 0 2
Output:
180
Solution:
Coming....