.
class Point:
def init (self, x=0, y=0):
self.x = x
self.y = y
def str (self):
return "({0},{1})".format(self.x, self.y)
def add (self, other):
x = self.x + other.x
y = self.y + other.y
return Point(x, y)
INFO