Not able to get answer < CanYouReadThis? >

#include
#include
using namespace std;

int main()
{
string S;
getline(cin,S);
int length= S.length();

for (int i = 0; i < length-1; i++)
{

    if (i==0 && S[i]>='A' && S[i]<='Z')
    {
        cout<<S[i];
    }
    else if (S[i]>='a' && S[i]<='z')
    {
        cout<<S[i];
    }
    else if (S[i]>='A' && S[i]<='Z')
    {
        cout<<endl<<S[i];
    }
}

return 0;

}

Hello @rprahulpal03 please wait i am checking your code.

Hello @rprahulpal03 i have corrected your code and now it is passing every test case:


if you have any doubt you can ask here:
Happy Learning!!

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.