std::ostream& operator<<(std::ostream& os, Punkt& p){ os << "(" << p.get_x() << "," << p.get_y() << ")"; return os; }