Judger/tests/test_src/integration/writev.cpp

14 lines
186 B
C++
Raw Normal View History

2017-05-20 05:37:06 +00:00
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
string s;
cin >> s;
cout << s;
return 0;
}