Compare commits

1 Commits

Author SHA1 Message Date
1b2bb3c33e On branch kurtkobayne
Your branch is up to date with 'origin/kurtkobayne'.
 Changes to be committed:
	modified:   main.sh
2026-02-28 14:37:18 +03:00
2 changed files with 0 additions and 13 deletions

0
main.sh Normal file → Executable file
View File

View File

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