#include
using namespace std;
int main() {
char ch;
cin >>ch ;
if(ch>='a'&& ch<='z')
{
cout << "L";
}
else if(ch>='A'&& ch <= 'Z')
{
cout << "U";
}
else
{
cout << "I";
}
return 0;
}
#include
using namespace std;
int main() {
char ch;
cin >>ch ;
if(ch>='a'&& ch<='z')
{
cout << "L";
}
else if(ch>='A'&& ch <= 'Z')
{
cout << "U";
}
else
{
cout << "I";
}
return 0;
}
this code will pass all testcases
there is no problem in this