var = int(input('Enter the stars you want in the first row..')) print('The star sequence is') while var >= 0: print('*'*var) var = var - 1