You are given a positive integer num. Find its square.
You cannot use the multiplication or division operator. Also the power function of any library is not allowed.
The first line contains an integer âTâ denoting the number of test cases.
For each test case, the input a line with the integer num.
For each test case, the output has one line containing the square of num.
3
1
5
10
1
25
100
1 <= T <= 10000
1 <= num <= 10000