feature/gcd
main
@@ -0,0 +1,9 @@
#!/bin/bash
a=$1
b=$2
while [ $b -ne 0 ]; do
r=$((a % b))
a=$b
b=$r
done
echo $a
The note is not visible to the blocked user.