#!/bin/bash
# just some stupid example
# should output 42
# note: if it is too small compression doesn't help
i=0
for j in {1..19}; do
    i=$((i+1))
done
j=$((j+4))
echo $((j+i))
