from typing import NoReturn
class Point(object):
def __init__(self, coordx: int, coordy: int) -> NoReturn:
self.coordx = coordx
self.coordy = coordy
def get_x(self) -> int:
return self.coordx
def get_y(self) -> int:
return self.coordy
def get_coords(self) -> ****:
return (self.coordx, self.coordy)