Files
2026-03-31 18:01:12 +03:00

6 lines
78 B
Bash

#!/bin/bash
a=$1
b=$2
gcd=$(./script1.sh $a $b)
lcm=$((a * b / gcd))
echo $lcm