class Test(object):
    @staticmethod
    def test(a, b):
        return a + b

print(Test.test(1, 2))
print(Test().test(3, 4))