My issue
why am i not getting the output
My code
#include <iostream>
#include <string>
using namespace std;
int main() {
// your code goes here
string S[9];
for(int i=0;i<9;i++){
cin>>S[i];
}
cout << S[6]<<endl;
return 0;
}
Learning course: 500 difficulty rating
Problem Link: Lucky Seven Practice Problem in - CodeChef