#!usr/bin/sh

# Swapping values

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

Embed on website

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