Files
Ankam Ravi Kumar ae460aa25e Update add.sh
2019-02-21 16:06:22 +05:30

20 lines
406 B
Bash

#!/bin/bash
##################################################
# Purpose: eval command Evaluating twice
# Version:1.0
# Created Date: Wed Jun 13 22:09:59 IST 2018
# Modified Date:
# WebSite: https://arkit.co.in
# Author: Ankam Ravi Kumar
##################################################
# START #
echo "addition of X+Y"
echo "Enter X"
read X
echo "Enter Y"
read Y
echo "X+Y = $X+$Y = $[ X+Y ]"
# END #