fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main(){
  4. int x;
  5. cin >> x;
  6. if(x%3) cout << "TAK\n";
  7. else if(x%2) cout << "NIE\n";
  8. else cout << "TAK\n";
  9. }
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
Success #stdin #stdout 0s 3464KB
stdin
Standard input is empty
stdout
NIE