mirror of https://github.com/01-edu/public.git
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.
30 lines
369 B
30 lines
369 B
5 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
"strconv"
|
||
|
|
||
5 years ago
|
"lib/is"
|
||
5 years ago
|
)
|
||
5 years ago
|
|
||
|
func main() {
|
||
|
if len(os.Args) != 2 {
|
||
5 years ago
|
fmt.Println("0")
|
||
5 years ago
|
} else {
|
||
|
argument, _ := strconv.Atoi(os.Args[1])
|
||
|
|
||
|
if argument < 0 {
|
||
5 years ago
|
fmt.Println("0")
|
||
5 years ago
|
} else {
|
||
|
result := 0
|
||
|
for ; argument >= 0; argument-- {
|
||
5 years ago
|
if is.Prime(argument) {
|
||
5 years ago
|
result += argument
|
||
5 years ago
|
}
|
||
|
}
|
||
|
fmt.Println(result)
|
||
|
}
|
||
|
}
|
||
|
}
|