Files
.todo_lini/main.sh

13 lines
332 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# Запрашиваем первое число
echo "Введите первое число:"
read num1
# Запрашиваем второе число
echo "Введите второе число:"
read num2
# Вызываем скрипт НОК и передаем ему числа
./script_nok.sh $num1 $num2