#!/bin/sh

echo "Enter a number:"
read n

r=$((n%2))

if [ $r -eq 0 ]
then
    echo "The number is Even"
else
    echo "The number is Odd"
fi