#include<iostream>
#include<string>
using namespace std;
int main()
{
string s;
while(cin>>s)
{
int country;
if(s.substr(0,1)=="I")
{
country=34;
}
else if(s.substr(0,1)=="O")
{
country=35;
}
else
{
country=s[0]-55;
if(country>17)
{
country--;
}
if(country>22)
{
country--;
}
}
int ans=(country%10)*9+country/10;
for(int i=1;i<9;i++)
{
ans=ans+atoi(s.substr(i,1).c_str())*(9-i);
}
ans=ans+atoi(s.substr(9,1).c_str());
if(ans%10==0)
cout<<"real"<<'\n';
else
cout<<"fake"<<'\n';
}
}
請問我少考慮到什麼?