Some test case not working don't know why

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

int main() {
char ch;
cin>>ch;
if(ch>=‘A’ && ch<=‘B’){
cout<<“U”<<endl;
}
if(ch>=‘a’ && ch<=‘z’){
cout<<“L”<<endl;
}
else{
cout<<“I”;
}
return 0;
}

hi @mvarun975_a7021058d653891d corrected and commented

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.