#include #include main () { int x, y; ifstream data ("data.txt"); while (data >> x) { data >> y; cout << x << " " << y << "\n"; } }