class Coordinate(object): def __init__(self,x,y): self.x=x self.y=y def __str__(self): print((self.x,self.y)) def __add__(self,x,y): self.x=x[0]+y...