#!/bin/sh

echo "Hi, please type a word: "
read  word
echo "The word you typed is: $word"
echo
echo
echo
echo "Type a new word: "
read  word
echo "This time you typed: $word"
