#!/bin/sh
read ans
if [ -z "$ans" ]; then
  echo $@
else
  echo $ans
fi
exit 0
