Compare commits

2 Commits

Author SHA1 Message Date
1b2bb3c33e On branch kurtkobayne
Your branch is up to date with 'origin/kurtkobayne'.
 Changes to be committed:
	modified:   main.sh
2026-02-28 14:37:18 +03:00
b917ef928f On branch kurtkobayne
Your branch is up to date with 'origin/kurtkobayne'.
 Changes to be committed:
	new file:   main.sh
2026-02-27 18:59:15 +03:00

11
main.sh Executable file
View File

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