#Many user-created passwords are simple and easy to guess.
#Write a program that takes a simple password and makes it stronger
#by replacing characters using the key below, and by appending "!" to the end of the input string.

#i becomes 1
#a becomes @
#m becomes M
#B becomes 8
#s becomes $


word = input()
password = word

password = password.replace('i', '1')
password = password.replace('a', '@')
password = password.replace('m', 'M')
password = password.replace('B', '8')
password = password.replace('s','$')

password = password + "!"

print(password)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: