#!/bin/bash # Add the two numbers result=$(expr $1 + $2) # Output the result echo $result