#!/bin/bash

a=5
b=10
#swapping
a=$((a+b))
b=$((a+b))
a=$((a-b))
echo "After swapping, number are:"
echo "first=$a, second=$b"

Embed on website

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