13 lines
197 B
Bash
Executable File
13 lines
197 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "calculashion gcd and lcm"
|
|
|
|
echo "pls write first agr"
|
|
read num1
|
|
|
|
echo "pls write second agr"
|
|
read num2
|
|
gcd=$(./script_GCD.sh $num1 $num2)
|
|
|
|
echo "GCD for $num1 and $num2 is $gcd"
|