mirror of
https://github.com/QingdaoU/Judger.git
synced 2025-01-06 12:21:41 +00:00
14 lines
186 B
C++
14 lines
186 B
C++
|
#include <iostream>
|
||
|
#include <string>
|
||
|
#include <algorithm>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
ios::sync_with_stdio(false);
|
||
|
string s;
|
||
|
cin >> s;
|
||
|
cout << s;
|
||
|
return 0;
|
||
|
}
|