- #include<cstdio>
- #include<iostream>
- #include<string>
- using namespace std;
- #define dsi(n) int n;scanf("%d",&n)
- #define si(n) scanf("%d",&n)
- #define f(i,n) for(int i=1;i<=n;++i)
- #define fi(n) f(i,n)
- #define f0(i,n) for(int i=0;i!=n;++i)
- #define fd(i,n) for(int i=n;i>=1;--i)
- #define ci const int&
- #define c(x) const x&
- class st
- {
- int x,y;
- friend bool operator <(const st&a,const st&b){return a.x<b.x;}
- };
- bool p(string s)
- {
- bool o1=0,o2=0,o3=0;
- if(s.size()<5)return 0;//fixed:<不是<=//
- for(int i=0;i<=s.size()-1;++i)
- {
- if('a'<=s[i]&&s[i]<='z')o1=1;
- if('A'<=s[i]&&s[i]<='Z')o2=1;
- if('0'<=s[i]&&s[i]<='9')o3=1;
- }
- if(o1&&o2&&o3)return 1;
- return 0;//fixed:记住return 0//
- }
- int main()
- {
- string s;
- cin>>s;
- cout<<(p(s)?"Correct":"Too weak");
- return 0;
- }