#include <iostream>
 
struct S
{
    int x;
    int y;
    S(int _x, int _y) : x(_x), y(_y) {}
};
 
int main()
{
    S arr[9];
}