package cap3 func Work17(a, b, c int) int { result := 70*a + 21*b + 15*c for result > 105 { result -= 105 } return result }