Need help for static method
Hi there so im really confused and stuck at this question so i would like to ask for ur help to understand it This is the question: Complete the given code to define a static add() method for the Calculator class, which returns the sum of its parameters. The code takes two numbers as input, and should return their sum using the Calculator class's add() method. And this is the given code but I've added some code to it and got really confused: class Calculator: #your code goes here def__init__(self,n1,n2): self.n1= n1 self.n2= n2 @staticmethod def __add__(n1,n2): return (n1 + n2) n1 = int(input()) n2 = int(input()) print(Calculator.add(n1, n2)) I keep getting an invalid syntax after the def__init__ code and im so confused