#!/gnu/usr/bin/bash

echo -n "Enter your first name: "
read firstname
echo "Hi $firstname"

