- push(num: int) adds number at top of the stack
- pop()->int removes number from the top of stack with returning the number. Raises IndexError for empty stack
- max()->int retuns maximal number in the stack. Raises IndexError for empty stack
MyStackInt.py- implementation of MyStackInt classtest_MyStackInt.py- tests for MyStackInt classdemo.py- demonstration script for MyStackInt