Files
Poetry/script_GCD.sh
2026-02-28 14:40:45 +03:00

14 lines
101 B
Bash
Executable File

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