On branch kurtkobayne

Your branch is up to date with 'origin/kurtkobayne'.
 Changes to be committed:
	new file:   main.sh
This commit is contained in:
2026-02-27 18:59:15 +03:00
parent 838d74966d
commit b917ef928f

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"