From b917ef928f2d4a21afa1a0157d4b8e9aaba97bc3 Mon Sep 17 00:00:00 2001 From: Kolomiets Dan <24_KolomietsDS@iux.local> Date: Fri, 27 Feb 2026 18:59:15 +0300 Subject: [PATCH] On branch kurtkobayne Your branch is up to date with 'origin/kurtkobayne'. Changes to be committed: new file: main.sh --- main.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 main.sh diff --git a/main.sh b/main.sh new file mode 100644 index 0000000..ac3cad3 --- /dev/null +++ b/main.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +echo "Введите первое число:" +read a + +echo "Введите второе число:" +read b + +gcd=$(./script_GCD.sh $a $b) + +echo "НОД = $gcd"