struct Point {
    int x;
    int y;
    Point(): x(0), y(0) {};
};

bool sourceId2Coordinates(int sourceId, Point* res);
