#!/bin/bash
# Busybox style script to encompass true(1) and false(1).
# Other commands will not be intentionally added.
if [ "$1" == "ssss" ] && [ "$2" == "ohio" ] ; then
	exit 0;
else
	exit 1;
fi
