while True: tcase = raw_input().strip().split() c =tcase[0] if c=='@': break; n =int(tcase[1]) d='' for i in range(n): if i==0: d=' '*(n-1)+c elif i==n-1: d=c*(2*(n-1)+1) else: d=' '*(n-i-1)+c+' '*(2*i-1)+c print d print