Bob has an array of length and he wants to gift Alice a subsequence of this array
But Alice doesn't like a subsequence if the sum of the elements in that subsequence is odd
Find out how many subsequences can Bob gift her modulo
Input Format :
The first line contains , the size of the array
The second line contains elements, representing the array
Output Format :
Print one integer, the number of possible ways Bob can gift Alice modulo
Constraints :
Note: Use 64-bit integer data type
So all possible subsequences are
(2),(4),(2,4),(2,1,3),(4,1,3),(2,4,1,3),(1,3)