DEPARTMENT OF COMPUTING

calc.py [download]


class Calc:

    def add(self, a, b):
        return a + b

    def mul(self, a, b):
        return a * b

Last Updated 08/24/2023