Files
Poetry/main.sh
Kolomiets Dan 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

12 lines
174 B
Bash
Executable File

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