Files
SkvortsovShubin/main.sh
21_SkvortsovKV 5ee6e57d86 first exe
2026-02-28 15:14:33 +03:00

10 lines
282 B
Bash
Executable File
Raw Permalink 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
gcd_res=$(./script_GCD.sh $num1 $num2)
lcm_res=$(./script_LCM.sh $num1 $num2)
echo "НОД($num1, $num2) = $gcd_res"
echo "НОК($num1, $num2) = $lcm_res"