123456789
struct Vector2D { double x; double y; Vector2D():x(0.0), y(0.0){} Vector2D(double a, double b):x(a), y(b){} }
Vector2D():