def caesar_enc_string(plaintext: str) -> str: ciphertext = "" for letter in plaintext: ciphertext += caesar_enc(letter) return ciphertext