sum
prod
import numpy N, M = map(int, raw_input().split()) my_array = numpy.array([ map(int, raw_input().split()) for i in range(N) ]) print numpy.prod( numpy.sum( my_array, axis = 0 ) )
No comments:
Post a Comment