You are the administrator of a social networking website. Your manager has asked you to ban some accounts from logging in to the website as they have violated some of the policies of the website.
Below you are given the banned accounts list which contains a list of banned usernames and a login()
function which takes in the username and password. Modify the FilterAccounts
decorator to check if the username
passed to login is present in the banned accounts list. If it is print USERNAME
is banned else continue by calling the login function with the arguments.