summary: Get the sum of numbers Returns: _type_: _description_
(self)
| 32 | self.take_inputs() |
| 33 | |
| 34 | def add(self): |
| 35 | """summary: Get the sum of numbers |
| 36 | |
| 37 | Returns: |
| 38 | _type_: _description_ |
| 39 | """ |
| 40 | return self.num1 + self.num2 |
| 41 | |
| 42 | def sub(self): |
| 43 | """_summary_: Get the difference of numbers |
no outgoing calls
no test coverage detected