#!/bin/bash

#asign arguments value to a variable
FIRST=$1
SECOND=$2

let RESULT=FIRST+SECOND
echo "$FIRST + $SECOND = $RESULT"