Given an unsorted array of integers, find the number of subarrays having sum exactly equal to a given number k.
First line contains array and second line contains K.
Print number of sub arrays having sum exactly equal to a given number k.
10 2 -2 -20 10
-10
3
Self Explanatory