http://pl.spoj.com/problems/WZP09_2F/
oto mój kod
#include
using namespace std;
int main()
{
int t;
cin>>t;
string s[t];
for(int i=0;i<t;i++)
{
cin>>s[i];
if(s[i]=="0")break;
if(s[i][s[i].size()-1]=='0' || s[i][s[i].size()-1]=='5' )cout<<"TAK"<<endl;
else cout<<"NIE"<<endl;
}
return 0;
}
nie mam pojęcia co jest źle,proszę o pomoc 