
a=$#
while [ $a -gt 0 ] 
do
	echo $1
	shift
	shift
	let "a = a -2"
done
