@@ -0,0 +1,9 @@
#!/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"
The note is not visible to the blocked user.