#!usr/bin/sh

# Swapping values

echo "Enter x:"
read x
echo "Enter y:"
read y
echo "Before swapping:" $x $y
z=$x
x=$y
y=$z
echo "After swapping:" $x $y

Embed on website

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