KTHC4NHIBEI76UPNFN33GNSWGVTZ533QUZTUDSRY5OTBCJJEJENQC /*Package darts is for functions related to dart game.*/package dartsimport "math"// Score is for calculating the toss score based on the coordinatesfunc Score(x, y float64) (score int) {rad := math.Sqrt(x*x + y*y)switch {case rad <= 1:score = 10case rad <= 5:score = 5case rad <= 10:score = 1default:score = 0}return}