On branch second

Changes to be committed:
	new file:   NOD
abooooba
This commit is contained in:
2026-02-27 17:48:14 +03:00
parent 4a576d8e72
commit 091fa03552

13
NOD Normal file
View File

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