import string,random
letters = string.digits
username = ''.join(random.choice(letters) for i in range(8))
print(username)