sum=0
for i in `awk -F ' ' '{print $4}' nowcoder.txt | grep -v '%MEM'`
do
    sum=`echo "$sum + $i" | bc`
done
echo $sum