import java.util.*;
public class Main {
public static void main(String args[]) {
Scanner sc=new Scanner(System.in);
char ch=(char)sc.next().charAt(0);
if(ch>=āAā&&ch<=āZā)
System.out.print(āUā);
else if(ch>=āaā&&ch<=āzā)
System.out.print(āLā);
else
System.out.print(ālā);
}
}
Can you pls find the bug?