1 Simple Substitution Cipher
1 Simple Substitution Cipher
substitution_key = "qwertyuiopasdfghjklzxcvbnm"
plaintext = "Hello World 123"
ciphertext = encrypt(plaintext, substitution_key)
print("Encrypted:", ciphertext)
print("Decrypted:", decrypt(ciphertext, substitution_key))