Xavier's Xmas Trees ------------------- Xavier, who featured in last week's problem, likes to send Christmas cards to celebrities he has never met, but is too cheap to buy cards. Instead, he prints his own, cuts them out and mails them. He likes to send different size cards to different people. Thus, really major celebrities (according to Xavier's reckoning), like Shirley Bassey, get big cards, while minor celebrities like Lady Gaga get smaller cards. Xavier has decided on Xmas trees as the theme for this year's cards. Write a programme to help Xavier print his cards. Input ----- Each line of input will contain an integer between 3 and 30, giving the height of the tree. The end of the input will be indicated by a line containing 0. (No output should be produced for 0.) Output ------ Print a tree as shown in the sample output for each height. Each tree should be separated from the next by a blank line. Do not print a blank line at the end of the output. Note: there should be no blank spaces to the right of the tree. Sample Input ------------ 5 7 3 0 Sample Output ------------- * /|\ //|\\ ///|\\\ | * /|\ //|\\ ///|\\\ ////|\\\\ /////|\\\\\ | * /|\ |