Compare commits

...

2 Commits

Author SHA1 Message Date
d8d1d8c2b1 Merge pull request 'On branch kurtkobayne' (#7) from kurtkobayne into master
Reviewed-on: #7
2026-02-27 19:05:24 +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 Normal file
View File

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