#!/bin/sh

while [ "$1" != "" ]; do
  echo "$1"
  shift
done

exit 0
