Histogram

Read n bar sizes and print one line of exactly k equals signs for each bar size k.

Easy1ImplementationStringNo attempts yetTime limit2sMemory limit512 MB

Problem

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.

Input

The first line contains the number of test cases nn (1n1001 \le n \le 100).

Each of the next nn lines contains the size kk (1k801 \le k \le 80) of one histogram bar.

Output

For each test case, print one line holding exactly kk copies of =, where kk is that bar's size. Do not put a space between two = characters.