class Punt3D:
    def __init__(self, x, y, z):
        self.x = x
        self.y = y
        self.z = z

    def __str__(self):
        return "({:.1f}, {:.1f}, {:.1f})".format(self.x, self.y, self.z)
