#include //#include //#include using namespace std; /***** type *****/ using ll = long long; using ld = long double; //using ml = boost::multiprecision::cpp_int; //using md = boost::multiprecision::cpp_dec_float_100; using pll = pair; template using vt = vector; template using vvt = vector>; template using vvvt = vector>>; template using uset = unordered_set; template using umap = unordered_map; /***** define *****/ #define all(c) (c).begin(), (c).end() // begin to end #define coutld cout << fixed << setprecision(10) // cout long double #define rep(i, b, e) for (ll i = b; i < e; i++) // repeat #define repr(i, b, e) for (ll i = b; e < i; i--) // repeat reverse #define pair NyaaPair // nyaa pair #define first f // pair::first #define second s // pair::second /***** const value *****/ #define llong_max 9223372036854775807 // 9 * 10^18 #define ldbl_max 1.79769e+308 // 1.7 * 10^308 #define pi 3.1415926535897932 // 3.14 ... #define loop_end 9223372036854775806 // LLONG_MAX-1 /***** for each macro *****/ #define fori(i, ...) if(ll i = -1) for(__VA_ARGS__) if(i++, true) #define each(i, e, c) fori(i, auto& e: c) #define forir(i, v, ...) if(ll i=(ll)v.size())for(__VA_ARGS__)if(i--,true) #define eachr(i, e, c) forir(i, auto e = c.rbegin(); e != c.rend(); ++e) /***** lambda *****/ auto Count = [] // long long count value (auto b, auto e, auto x) { return (ll)count(b, e, x); }; auto CtoL = [] // char to number (auto c) { return (ll)(c - '0'); }; auto CeilD = [] // long double ceiling div (auto a, auto b) { return ceil((ld)a / (ld)b); }; auto Fix = [] // fix value (auto b, auto e, auto fix) { for (auto it = b; it != e; ++it) *it += fix; }; auto LtoC = [] // number to char (auto n) { return (char)('0' + n); }; auto Pow = [] // long long pow (auto a, auto b) { return (ll)pow(a, b); }; auto Pow2 = [] // long long pow2 (auto n) { return (1LL << n); }; auto Pow10 = [] // long long pow10 (auto n) { return (ll)pow(10, n); }; auto Size = [] // long long collection size (auto& c) { return (ll)(c).size(); }; auto Sum = [] // long long accumulate (auto b, auto e) { return accumulate(b, e, 0LL); }; /***** template *****/ template void MakeVVT (ll ys, ll xs, vvt& v, T fill = T()) { // vector> resize + fill v.resize(ys); rep(y, 0, ys) v[y].resize(xs, fill); } template void MakeVVVT (ll zs, ll ys, ll xs, vvvt& v, T fill = T()) { // vector>> resize + fill v.resize(zs); rep(z, 0, zs) MakeVVT(ys, xs, v[z], fill); } template void InputVT (ll xs, vt& v, T fix = T()) { // input vector (T != struct) + fix v.resize(xs); rep(i, 0, xs) { cin >> v[i]; v[i] += fix; } } template void InputVVT (ll ys, ll xs, vvt& v, T fix = T()) { // input vector> (T != struct) + fix MakeVVT(ys, xs, v, fix); rep(y, 0, ys) rep(x, 0, xs) { cin >> v[y][x]; v[y][x] += fix; } } template void InputVVVT (ll zs, ll ys, ll xs, vvvt& v, T fix = T()) { // input vector>> (T != struct) + fix v.resize(zs); rep(z, 0, zs) InputVVT(ys, xs, v[z], fix); } template struct NyaaPair { // nyaa pair template T1 f; T2 s; }; template bool operator < (const NyaaPair& l, const NyaaPair& r) { // nyaa pair template operator < return (l.f != r.f) ? l.f < r.f : l.s < r.s; } template bool operator > (const NyaaPair& l, const NyaaPair& r) { // nyaa pair template operator > return (l.f != r.f) ? l.f > r.f : l.s > r.s; } /**************************************/ /********** BEGIN OF NYA LIB **********/ /**************************************/ namespace NyaGadget {} /**************************************/ /*********** END OF NYA LIB ***********/ /**************************************/ using namespace NyaGadget; //using mll = ModLL< 1000000007 >; //using mll = ModLL< 998244353 >; int main(void) { string s; cin >> s; cout << s; return 0; }