On branch third

Your branch is up to date with 'origin/third'.

 Changes to be committed:
	new file:   main
	new file:   test.txt
This commit is contained in:
2026-02-27 18:12:36 +03:00
parent 091fa03552
commit 946b345a58
2 changed files with 14 additions and 0 deletions

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