first #3

Merged
24_GatijatovEI merged 2 commits from first into master 2026-02-27 18:36:54 +03:00
Showing only changes of commit 091fa03552 - Show all commits

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