My issue
My code
#include <iostream>
using namespace std;
int main() {
// your code goes here
int idk;
cin>>idk;
int cnt=0;
for(int j=0;j<idk;j++){
int n;
cin>>n;
for(int i=0;i<n;i++){
int ent;
cin>>ent;
if(ent%2==0){
continue;
}
else{
cnt++;
}
}
}
cout<<cnt*idk;
return 0;
}
Problem Link: MISSP Problem - CodeChef