Добавить script1

This commit is contained in:
2026-03-31 18:02:10 +03:00
parent 669112d3f4
commit 01bdef0b19

11
script1 Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
a=$1
b=$2
while [ $b -ne 0 ]
do
temp=$b
b=$(($a % $b))
a=$temp
done
echo $a