Using the provided dictionary, develop an encryption algorithm
that will convert a user-entered string into an encrypted string.
Print the user inputted text and the corresponding encrypted
text.
cipher = {"A": "T", "B": "D", "C": "L","D": "O", "E": "F","F":
"A", \ "G": "G","H": "J", "I": "K", "J": "R", "K": "I","L": "C",
"M": "V", \ "N": "P", "O": "W","P": "U", "Q": "X", "R": "Y", "S":
"B","T": "E", \ "U": "Z", "V": "Q", "W": "S","X": "N", "Y": "M",
"Z": "H"}
b) Create...