Python - Class Methods and Static Methods
Identify the problem in this code:
class Calculator:
@staticmethod
def multiply(self, x, y):
return x * y
print(Calculator.multiply(2, 3))