You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
234 B

package main
import (
"fmt"
"os"
"strconv"
"github.com/01-edu/public/go/tests/lib"
)
func main() {
if len(os.Args) == 3 {
a, _ := strconv.Atoi(os.Args[1])
b, _ := strconv.Atoi(os.Args[2])
fmt.Println(lib.GCD(a, b))
}
}