#include <iostream>
#include <math.h>
using namespace std;
struct Point
{
int x;
int y;
double l;
};
int main() {
Point arr[10000];
int n, i, j, x, y, sx, sy;
double max, sl;
max = 0;
cin >> n;
|
|
for (i = 0; i < n; i++) {
cout << arr[i].x << " " << arr[i].y<<endl;
}
}
|