#include "bits/stdc++.h" using namespace std; using ll =long long; using dd =double; using pll =pair; using tll =tuple; using vll =vector; using vdd =vector
; using vpll =vector; using vtll =vector; using vvll =vector; using vvdd =vector; using vvpll =vector; using vvtll =vector; using vvvll =vector; using vvvdd=vector; using vvvpll =vector; using vvvtll =vector; using vvvvll=vector;using vvvvdd=vector;using vvvvpll=vector;using vvvvtll=vector; constexpr ll INF = 1LL << 60; constexpr dd EPS = 1e-11; //cin,cout高速化のおまじない+桁数指定 struct Fast{ Fast(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(std::numeric_limits::max_digits10); } } fast; #define REPS(i, S, E) for (ll i = (S); i <= (E); i++) #define rep(i, S, E) REPS(i, S, E) #define REP(i, N) REPS(i, 0, (N)-1) #define DEPS(i, S, E) for (ll i = (E); i >= (S); i--) #define dep(i, S, E) DEPS(i, S, E) #define DEP(i, N) DEPS(i, 0, (N)-1) #define EACH(e, v) for (auto&& e : v) #define ALL(v) (v).begin(), (v).end() #define RALL(v) (v).rbegin(), (v).rend() template inline bool chmax(T &a, T b) { if (a < b) { a = b; return true; }return false; } template inline bool chmin(T &a, T b) { if (a > b) { a = b; return true; }return false; } template inline T MaxE(vector&v,ll S,ll E){T m=v[S]; REPS(i,S,E)chmax(m,v[i]); return m;}//v[S]~v[E]の最大値 template inline T MinE(vector&v,ll S,ll E){T m=v[S]; REPS(i,S,E)chmin(m,v[i]); return m;}//v[S]~v[E]の最小値 template inline T MaxE(vector &v, ll N) { return MaxE(v, 0, N - 1); } //先頭N個中の最大値 template inline T MinE(vector &v, ll N) { return MinE(v, 0, N - 1); } template inline T MaxE(vector &v) { return MaxE(v, (ll)v.size()); } template inline T MinE(vector &v) { return MinE(v, (ll)v.size()); } template inline ll MaxI(vector&v,ll S,ll E){ll m=S; REPS(i,S,E){if(v[i]>v[m])m=i;} return m;} template inline ll MinI(vector&v,ll S,ll E){ll m=S; REPS(i,S,E){if(v[i] inline ll MaxI(vector &v, ll N) { return MaxI(v, 0, N - 1); } template inline ll MinI(vector &v, ll N) { return MinI(v, 0, N - 1); } template inline ll MaxI(vector &v) { return MaxI(v, (ll)v.size()); } template inline ll MinI(vector &v) { return MinI(v, (ll)v.size()); } template inline T Sum(vector &v, ll S,ll E){ T s=v[S]; REPS(i,S+1,E)s+=v[i]; return s; } template inline T Sum(vector &v, ll N) { return Sum(v, 0, N - 1); } template inline T Sum(vector &v) { return Sum(v, v.size()); } template inline ll Size(vector &v){ return (ll)v.size(); } template inline T POW(T a, ll n){ T r=1; for (; n>0; n>>=1, a*=a){ if (n&1)r*=a; } return r; } inline ll POW(int a, ll n){ return POW((ll)a, n); } inline ll MSB(ll a){for(ll o=63,x=-1;;){ll m=(o+x)/2; if(a<(1LL<>=1,i++) if(m&1)v.push_back(i); return move(v);} inline ll BitNum(ll m){ for (ll c=0;; m>>=1){ c+=m&1; if (!m)return c; } } inline ll Bit(ll s, ll i){ return (s>>i)&1; } //sの第ibit i=0-63 inline ll BitOn(ll s, ll i){ return s|(1LL< inline ll UnderNumOf(vector &v, T x){ //sort済vのx以下の個数を得る return upper_bound(v.begin(), v.end(), x) - v.begin(); } template inline ll UnderNumOf(vector &v, T x, Pr pred){ //x以下個数 return upper_bound(v.begin(), v.end(), x, pred) - v.begin(); } template inline ll OverNumOf(vector &v, T x){ //sort済vのx以上の個数を得る return (ll)v.size() - (lower_bound(v.begin(), v.end(), x) - v.begin()); } template inline ll OverNumOf(vector &v, T x, Pr pred){ //x以上の個数 return (ll)v.size() - (lower_bound(v.begin(), v.end(), x, pred) - v.begin()); } template inline vector cinv(ll N){ vector v(N); REP(i, N)cin>>v[i]; return move(v);} template inline vector> cinv2(ll N){ vector> v(N); REP(i,N){cin>>v[i].first>>v[i].second;} return move(v); } template inline vector> cinv3(ll N){ vector> v(N); REP(i,N){cin>>get<0>(v[i])>>get<1>(v[i])>>get<2>(v[i]);} return move(v);} template inline vector> cinv4(ll N){ vector> v(N); REP(i,N){cin>>get<0>(v[i])>>get<1>(v[i])>>get<2>(v[i])>>get<3>(v[i]);} return move(v);} template inline vector> cinvv(ll N, ll M){ vector> vv(N); REP(i, N) vv[i] = cinv(M); return move(vv);} template inline void coutv(vector &v, char deli=' '){ ll N=(ll)v.size(); REP(i,N){cout << v[i] << ((i==N-1)?'\n':deli);} } template void bye(T a){cout << a << '\n'; exit(0);} #if defined(_DEBUG) ll dumpW = 5; template void Dump(vector &v){ REP(i, (ll)v.size()) { cerr << ((i==0)?"[":" ") << setw(dumpW) << v[i]; } cerr << "]"; } void Dump(vll &v){ REP(i, (ll)v.size()) { cerr << ((i==0)?"[":" ") << setw(dumpW); if (v[i] == INF) cerr << "INF"; else if (v[i] == -INF) cerr << "-INF"; else cerr << v[i]; } cerr << "]"; } template void Dump(vector> &v){ ll N=(ll)v.size(); string d[2][2]={{" ", "["}, {"\n", "]\n"}}; REP(i, N) { cerr << d[0][i==0]; Dump(v[i]); cerr << d[1][i==N-1]; } } template void Dump(vector>> &v){ ll N=(ll)v.size(); string d[2]={" <", "[ <"}; REP(i, N) { cerr << d[i==0] << i << ">\n"; Dump(v[i]); } cerr << "]\n"; } template void Dump(vector>>> &v){ ll N=(ll)v.size(); string d[2]={" ---<", "[ ---<"}; REP(i, N) { cerr << d[i==0] << i << ">---\n"; Dump(v[i]); } cerr << "]\n"; } template void Dump(vector>>>> &v){ ll N=(ll)v.size(); string d[2]={" ======<", "[ ======<"}; REP(i, N) { cerr << d[i==0] << i << ">======\n"; Dump(v[i]); } cerr << "]\n"; } #else template void Dump(vector &v){} template void Dump(vector> &v){} template void Dump(vector>> &v){} template void Dump(vector>>> &v){} template void Dump(vector>>>> &v){} #endif struct mll{ static ll MOD; ll val; mll(ll v = 0): val(v % MOD){ if (val < 0) val += MOD; } mll operator - () const { return -val; } mll operator + (const mll &b) const { return val + b.val; } mll operator - (const mll &b) const { return val - b.val; } mll operator * (const mll &b) const { return val * b.val; } mll operator / (const mll &b) const { return mll(*this) /= b; } mll operator + (ll b) const { return *this + mll(b); } mll operator - (ll b) const { return *this - mll(b); } mll operator * (ll b) const { return *this * mll(b); } friend mll operator + (ll a, const mll &b) { return b + a; } friend mll operator - (ll a, const mll &b) { return -b + a; } friend mll operator * (ll a, const mll &b) { return b * a; } friend mll operator / (ll a, const mll &b) { return mll(a)/b; } mll &operator += (const mll &b) { val=(val+b.val)%MOD; return *this; } mll &operator -= (const mll &b) { val=(val+MOD-b.val)%MOD; return *this; } mll &operator *= (const mll &b) { val=(val*b.val)%MOD; return *this; } mll &operator /= (const mll &b) { ll c=b.val, d=MOD, u=1, v=0; while (d){ ll t = c / d; c -= t * d; swap(c, d); u -= t * v; swap(u, v); } val = val * u % MOD; if (val < 0) val += MOD; return *this; } mll &operator += (ll b) { return *this += mll(b); } mll &operator -= (ll b) { return *this -= mll(b); } mll &operator *= (ll b) { return *this *= mll(b); } mll &operator /= (ll b) { return *this /= mll(b); } bool operator == (const mll &b) { return val == b.val; } bool operator != (const mll &b) { return val != b.val; } bool operator == (ll b) { return *this == mll(b); } bool operator != (ll b) { return *this != mll(b); } friend bool operator == (ll a, const mll &b) { return mll(a) == b.val; } friend bool operator != (ll a, const mll &b) { return mll(a) != b.val; } friend ostream &operator << (ostream &os, const mll &a) { return os << a.val; } friend istream &operator >> (istream &is, mll &a) { return is >> a.val; } static mll Combination(ll a, ll b){ chmin(b, a-b); if (b<0) return mll(0); mll c = 1; REP(i, b) c *= a-i; REP(i, b) c /= i+1; return c; } }; ll mll::MOD = 1000000007LL;// 998244353LL;//1000000007LL; using vmll = std::vector; using vvmll = std::vector; using vvvmll = std::vector; using vvvvmll = std::vector; using vvvvvmll = std::vector; void solve() { string S; cin >> S; if (S=="0") bye("Nothing"); if (S=="3.14159265") bye("pi"); if (S=="1112345678999+X"){ ll SS; cin >> SS; cout << "九蓮宝燈" << '\n'; cout << "Thirteen Orphans" << '\n'; return; } if (S=="くぁwせdrftgyふじこlp"){ cout << "さmpぇ" << '\n'; return; } while (true){ ll sz = (ll)S.size(); if (S.back() != '.'){ cout << sz << '\n'; } else{ cout << sz-1 << '\n'; break; } cin >> S; } } int main(){ solve(); return 0; }