Files
Poetry/main
Kolomiets Dan 946b345a58 On branch third
Your branch is up to date with 'origin/third'.

 Changes to be committed:
	new file:   main
	new file:   test.txt
2026-02-27 18:12:36 +03:00

14 lines
224 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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