kurtkobayne #6

Merged
24_KolomietsDS merged 2 commits from kurtkobayne into master 2026-02-27 18:55:45 +03:00
2 changed files with 14 additions and 0 deletions
Showing only changes of commit 838d74966d - Show all commits

13
main Normal file
View File

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

1
test.txt Normal file
View File

@@ -0,0 +1 @@
hiiiii