Sir this time again showing wrong code why

#include<bits/stdc++.h>
using namespace std;

int main()
{
char ch;
cout << "Enter the character u want to check:-> ";
cin >> ch;
if(ch>64 && ch<91)
{
cout << “UPPERCASE”;
}
else if (ch>96 && ch<123)
{
cout << “lowercase”;
}
else
{
cout << “Invalid”;
}
return 0;
}

remove this line cout << "Enter the character u want to check:-> ";

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.