mirror of
https://github.com/QingdaoU/Judger.git
synced 2025-01-04 11:21:42 +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;
|
|
} |