fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int z,n;
  6. cin>>z;
  7. for(int i=0;i<z;i++){
  8. cin>>n;
  9. cout<<n<<endl;
  10. if (n % 2 == 0) { //Проверка на чётность
  11. cout<<"A"<<endl;
  12. }
  13. else{
  14. cout<<"B"<<endl;
  15. }
  16. }
  17. return 0;
  18. }
Success #stdin #stdout 0s 4316KB
stdin
2
5
6
stdout
5
B
6
A