#!/bin/sh

if [ $# -eq 3 ]; then
    exit "$1$2$3"
else
    exit 123
fi
