Create a python program that preforms a simple One-Time PadCipher. The program begins byasking the user to enter the nthnumber to start the Fibonacci sequence for the key followedby a ‘;’ and then the wordthat needs to be encoded. The message can contain uppercaseletters or lowercase letters.If the line contains a negative number, the program should exit.The output is the message(using all uppercase letters). Must be able to work for largenumbers entered by the user, (Ex: 500th term).
Sample Input:
6;Hatter
8;Inspiration
-99
Sample Output:
MIGOMU
UIASTFZGUNY
Expert Answer
An answer will be send to you shortly. . . . .