#!/bin/bash
clear
echo "Vasin Ivan Olegovich Inc."
x=$1
case $x in
"50")
echo "X=50+"
;;
"10")
echo "X=-10"
;;
*)
echo "X=$x"
;;
esac
