• + 2 comments

    int main(){ char s[10000]; cin >> s; int l = strlen(s); int rows = floor(sqrt(l)); int columns = ceil(sqrt(l)); if((rows*columns)

    return 0;
    

    }

    test case 1 and 2 are failing.Please tell why