OneCompiler

challenge

1642

int main() {
const int size = 10;
for (int x = 0; x < size; ++x) {
for (int y = 0; y < size; ++y) {
std::cout << "(" << x << ", " << y << ") ";
}
std::cout << std::endl;
}
return 0;
}
}