Simply it just do the famous pyramid decoding which stores words with their ids in a pyramid and decode the hidden message
- Create or modify a new txt file.
- Add a number & a word in every line
- Run the python code and ensure that it matches the txt file
- Firstly it opens the txt file and store every line in a dictionary.
- Converts this dictionary into a pyramid.
- Prints all the ID's of last elements in every line ( those we need for decoding ).
- Using those ID's it gets the name of every element and print it.