Submission #7464641


Source Code Expand

#include<bits/stdc++.h>
using namespace std;
int main(){
  int h,w;
  cin >> h >> w;
  for(int i=0;i<h;i++){
    for(int j=0;j<w;j++){
      string s;
      cin >> s;
      if(s=="sunke"){
        cout << char('A'+j) << i+1 << endl;
        return 0;
      }
    }
  }
  

Submission Info

Submission Time
Task A - Where's Snuke?
User recososo
Language C++14 (GCC 5.4.1)
Score 0
Code Size 286 Byte
Status CE

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:15:3: error: expected ‘}’ at end of input
   }
   ^