#!/bin/ksh
# File: reverse5

if [ $# -ne 5 ] ; then
  echo "Usage: reverse5 arg1 arg2 arg3 arg4 arg5"
  exit
fi
echo $5 $4 $3 $2 $1
