#!/bin/bash

for testcase in 6 11; do
set $testcase

eval echo {1..$1} + {$1..1}|tr -d \ |bc

bc<<<`eval printf %s {1..$1} + {$1..1}`

done
