```
int main()
{
int l;
char op;
cin >> l >> op;
double s=0;
for(int i=0;i<12;i)
{
for(int j=0;j<12;j)
{
double a;
cin >> a;
if(i==l) s+=a;
}
}
```