#!/usr/bin/python3 # -*- coding: utf-8 -*- print("You have to run this program, once for every character of your message") key: int = int(input("\nEnter your Caesar key in numeric form (1-25): ")) encoded_char: int = int( input( "\nEnter Caesar encoded number corresponding to one character of your message:" ) ) print("\nThe translation of your character is:") # To decrypt: print(encoded_char - key)