#!/bin/bash
out=`</dev/stdin`
if [ -n "$out" ]; then
	echo "$out"
	exit 0
else
	exit 1
fi
