#!/bin/bash

# program name: "multiply.sh"
# linux shell script program to multiply two number 

echo "enter num1:"
read num1
echo "enter num2:"
read  num2

multiply='expr $num1 \* $num2'
echo "Multiplication is: $multiply"

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: