fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. int A[5][5];
  6. int x, y;
  7. for(int i = 0; i < 5; i+=1) {
  8. for(int j = 0; j < 5; j+=1) {
  9. cin >> A[i][j];
  10. if(A[i][j] == 1) x = j; y = i;
  11. }
  12. }
  13. cout << y << endl << x;
  14. // if(A[2][2] == 1) cout << 0;
  15. // else if()
  16. }
Success #stdin #stdout 0.01s 5292KB
stdin
0 0 0 0 0
0 0 0 0 1
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
stdout
4
4