#!/bin/bash


if test "${1}" = '42' ; then
	echo 'É 42!'
elif test "${1}" = '10' ; then
	echo '´É  10!!!'
else
	echo 'Não é 42'
fi

