xj_test/tests/main.cpp

12 lines
192 B
C++

#include<bits/stdc++.h>
#include <chrono>
#include <thread>
using namespace std;
int main(){
// this_thread::sleep_for(chrono::seconds(2));
string s;
cin>>s;
cout<<s<<endl;
}