Write a program that takes a simple password and makes it stronger by replacing characters using the key below, and by appending "q*s" to the end of the input string.
i
becomes!
a
becomes@
m
becomesM
B
becomes8
o
becomes.
word = input()
password = ''
if 'a' in x:
password = word.replace('a', '@')
if 'i' in x:
password = word.replace('i', '!')
if 'm' in x:
password = word.replace('m', 'M')
if 'B' in x:
password = word.replace('B', '8')
if 'o' in x:
password = word.replace('o', '.')
print(password)