fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main() {
  4. int t;
  5. cin >> t;
  6. while(t--) {
  7. int n;
  8. cin >> n;
  9. if(n == 1) cout << "a" << endl;
  10. else cout << "-1" << endl;
  11. }
  12. }
Success #stdin #stdout 0s 16064KB
stdin
1 
1
stdout
a