#!/bin/bash

a=1
b=9
c1=$(expr $a + $b)
c2=$[a+b]
c3=$((a+b))
let c4=$a+$b
let c5=a+b

echo -e "c1=$c1\nc2=$c2\nc3=$c3\nc4=$c4\nc5=$c5"
