arithmetic operation in bash

Shell
#!/bin/bash
x=5
y=10
ans=$(( x + y ))
echo "$x + $y = $ans"
Source

Also in Shell: