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

12 lines
174 B
Bash

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