n, i = 10, 1 while True: print(i, end="") i += 1 if i > n: break print(", ", end="")