# display blank line
print('\n')
#ask the user to choose an option
print('What is the most common password ?')
print('enter 1 for : password')
print('enter 2 for : 123456')
print('enter 3 for : qwerty')
print('enter 4 for : 12345')
# display blank line
print('\n')
choice = int(input('Please enter the number for answer: '))
# display blank line
print('\n')
# check the choice
# if it is 2, display message for correct answer
# otherwise display an message for incorrect answer.
if (choice == 2) :
print("Yes! Can you believe that?")
print('It is pretty poor, but not the worst!')
# display blank line
print('\n')