fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. char chess[8][8];
  6. for(int i=7; i>=0; i--){
  7. for(char j='a'; j<='h'; j++){
  8. cin >> chess[i][j - 'a'];
  9. if(chess [i][j - 'a'] == '*')
  10. cout << j << i+1;
  11. }
  12. }
  13. return 0;
  14. }
Success #stdin #stdout 0s 5276KB
stdin
........
........
........
........
........
.*......
........
........
stdout
b3