Sir my code is working fine but is showing two of the test cases out of 5 as wrong.
#include
using namespace std;
char Check(char ch)
{
if(ch>=‘A’ && ch<=‘Z’)
return ‘U’;
else if(ch>='a' && ch<='z')
return 'L';
else
return 'i';
}
int main() {
char ch;
cin>>ch;
char temp=Check(ch);
cout<<temp;
return 0;
}