#!/bin/bash echo 'Введите число: ' read NUMBER if (( $NUMBER % 2 == 0 )) then echo '**EVEN**' else echo '**ODD**' fi