fork(1) download
  1. #include <iostream>
  2. #include <math.h>
  3. using namespace std;
  4. int main()
  5. {
  6. int t;
  7. cin>>t;
  8. for (int i=0;i<t;i++)
  9. {
  10. int n;
  11. cin>>n;
  12.  
  13. int pierw = 0;
  14. pierw = sqrt(n);
  15. if(n % pierw == 0) cout<<"NIE"<<endl;
  16. else cout<<"TAK"<<endl;
  17. }
  18. }
  19.  
  20.  
  21.  
Success #stdin #stdout 0s 3300KB
stdin
3
11
1
4
stdout
TAK
NIE
NIE