Python - Class Methods and Static Methods
What will be the output of this code?
class MathOps:
@staticmethod
def add(x, y):
return x + y
print(MathOps.add(3, 4))