#include #include "point.h" int main() { Point a(1, 2); Point b(3, 4); Point c = a + b; std::cout << c.Distance(a) << std::endl; }