xj_test/tests/main.cpp
2024-08-17 14:21:55 +08:00

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;
}