import os
username = os.getlogin()
username = os.getlogin()
Username = input("What is your username? ")
UsernameLength = len(Username)
if UsernameLength <= 10:
print(f'Your Username is {Username}')
elif UsernameLength >= 10:
print("Username is too long! (MAXIMUM IS 20 CHARACTERS)")
exit()