2 Commits

Author SHA1 Message Date
805e426a36 Поменял переменные 2026-02-27 17:10:21 +03:00
7f73789e3e Рабочий файл: НОК 2026-02-27 12:50:17 +03:00

14
NOK.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
a=$1
cp_a=$a
b=$2
cp_b=$b
while [ $b -ne 0 ]; do
temp=$b
b=$((a % b))
a=$temp
done
c=$((cp_a * cp_b))
d=$((c / a))
echo $d