
def PGCompter1():
    for j in range(1, 10+1):
        print(j, " ", sep="", end="")
    print('\n', end="")

PGCompter1()