Shroeder and Patsy heard about a friend whose computer was hit by a ransom virus. A message on his screen said that every file had been encrypted and that getting the files back would cost money.
Both of them like programming, so they wondered how that works and wrote a simple cipher of their own, just for fun. Its key is a single number.
The method is a variant of the Caesar cipher. The alphabet is circular, so a follows z. Start with a shift between 1 and 25, which is the key, and increase the shift by one for every letter. Once the shift passes 25 it becomes 1 again.
Only lowercase letters are shifted. Spaces, digits and punctuation marks are copied unchanged and do not advance the shift.
Decrypting is easy once you know the key, as long as you shift in the opposite direction. Given the key and one line of ciphertext, print the original text.