Merge pull request 'On branch kurtkobayne' (#7) from kurtkobayne into master

Reviewed-on: #7
This commit is contained in:
2026-02-27 19:05:24 +03:00

11
main.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
echo "Введите первое число:"
read a
echo "Введите второе число:"
read b
gcd=$(./script_GCD.sh $a $b)
echo "НОД = $gcd"