Main Stack Operations
- This operations are given their canonical names but is not necessary to do so
- All that matters is that a stack acts like a stack not that the names are the same
push(): This adds a new item to the stackpop(): This both removes and returns the top item of the stackpeek(): This returns the item on the top of the stack


