# User's password without echoing
import maskpass # to hide the password
# masking the password, without using the mask key, the default masking is "*"
pwd = maskpass.askpass("password: " ,mask="")
if (pwd == 'nick'):
print('Welcome')
else:
print("Incorrect password")