#include <vector>

struct Point {
    int x, y;
};

std::vector<Point> draw(int N, int L, std::vector<Point> A, std::vector<Point> B);
