#include <iostream> using namespace std; class Point { private: int x; int y; public: Point() { };
// 在此处补充你的代码
}; int main() { Point p; while(cin >> p) { cout << p << endl; } return 0; }
2 3 4 5
2,3 4,5