while True:
    try:
        num=int(input())
        print('*'*num)
    except:
        break