What is the output of the following code?

count = 0

while count < 10:

print(count, end="")

count += 1

The output of the code will be as follows:

0123456789