summaryrefslogtreecommitdiff
path: root/progs/a203.py
blob: 540c84c02e188053aaf408f5f64e6a5f615fe61d (plain)
1
2
3
4
5
def is_Product_Even(arr,n): 
    for i in range(0,n): 
        if ((arr[i] & 1) == 0): 
            return True
    return False