write a go solution for Description: Sasha grew up and went to first grade. To celebrate this event her mother bought her a multiplication table M with n rows and n columns such that M_ij=a_i*a_j where a_1,...,a_n is some sequence of positive integers. Of course, the girl decided to take it to school with her. But while she was having lunch, hooligan Grisha erased numbers on the main diagonal and threw away the array a_1,...,a_n. Help Sasha restore the array! Input Format: The first line contains a single integer n (3<=slantn<=slant10^3), the size of the table. The next n lines contain n integers each. The j-th number of the i-th line contains the number M_ij (1<=M_ij<=10^9). The table has zeroes on the main diagonal, that is, M_ii=0. Output Format: In a single line print n integers, the original array a_1,...,a_n (1<=a_i<=10^9). It is guaranteed that an answer exists. If there are multiple answers, print any. Note: None. Output only the code with no comments, explanation, or additional text.