Files
SkvortsovShubin/script_LCM.sh
21_SkvortsovKV 5ee6e57d86 first exe
2026-02-28 15:14:33 +03:00

14 lines
133 B
Bash
Executable File

#!/bin/bash
a=$1
b=$2
x=$a
y=$b
while [ $y -ne 0 ]; do
rem=$((x % y))
x=$y
y=$rem
done
g=$x
l=$(( (a * b) / g ))
echo $l