""" """ class Coordinate(object): def __init__(self, x, y): self.x = x self.y = y def __str__(self): print(f"({self.x}, {self.y})") def __add__(self, coordinate2): x = self.x + coordinate2.x y = self.y + coordinate2.y coordinate3 = Coo...