func multiply( A []int ) []int {
    // write code here
    length := len(A)
    answer := make([]int,length)

    for i:=0;i<length;i++ {
        answer[i]=1
    }

    for i:=0;i<length;i++ {
        for j:=0;j<length;j++ {
            if i==j {
                continue
            } else {
                answer[i]*=A[j]
            }
        }
    }
    return answer
}