import java.util.*;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
char ch = sc.next().charAt(0);
if(ch<=97 && ch>=122)
{
System.out.println("lowercase");
}
else if(ch<=65 && ch>=90)
{
System.out.println("UPPERCASE");
}
else
{
System.out.println("Invalid");
}
}
}
two testcases pass out of four
output is correct then what can be the problem
help ASAP