#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <map>
#include <cmath>
using namespace std;


int main()
{
	string str;
	while (getline(cin,str))
	{
		cout << str << endl;
	}
	return 0;
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-23
  • 2021-06-09
  • 2021-05-28
  • 2022-12-23
  • 2021-09-19
猜你喜欢
  • 2022-12-23
  • 2021-12-08
  • 2022-01-09
  • 2021-05-29
  • 2021-12-29
相关资源
相似解决方案