Read n bar sizes and print one line of exactly k equals signs for each bar size k.
A histogram is a picture of data. It is made of bars, and the length of one bar is the size of the data it stands for.
You are given a list of bar lengths. Draw the histogram for that list.
The first line contains the number of test cases nnn (1≤n≤1001 \le n \le 1001≤n≤100).
Each of the next nnn lines contains the size kkk (1≤k≤801 \le k \le 801≤k≤80) of one histogram bar.
For each test case, print one line holding exactly kkk copies of =, where kkk is that bar's size. Do not put a space between two = characters.
=