#!/bin/sh

score=0

for i in {01..20}; do
    stechec2-run config.yml | grep score | sed 's/score: //' > $i.out
    score=$[$score + $(python ./test.py < $i.out)]
    echo $score
done;


