n=gets.to_i xs=gets.split(" ").map{|e| e.to_i} ans=0 n.times{|i| ans+=(n-i)*(i+1)*xs[i] } puts ans