int main() { for (int y=0; y < 7; y++) { for(int x=0; x < 7; x++) { cout << "(" << y << "|" << x << ")"; } cout << endl; } return 0; }