2024-08-14 14:59:07 +00:00
|
|
|
#include<bits/stdc++.h>
|
2024-08-17 06:19:19 +00:00
|
|
|
#include <chrono>
|
|
|
|
#include <thread>
|
2024-08-14 14:59:07 +00:00
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
|
|
int main(){
|
2024-08-17 06:19:19 +00:00
|
|
|
// this_thread::sleep_for(chrono::seconds(2));
|
2024-08-14 14:59:07 +00:00
|
|
|
string s;
|
|
|
|
cin>>s;
|
|
|
|
cout<<s<<endl;
|
|
|
|
}
|