#include #include using namespace std; int line, col; int main() { for(line = 199; line >= 0; --line) { for(col = 199; col >= 0; --col) { cout << line << ' ' << col << '\n' << flush; } } return 0; }