public class test {

public static void main(String[] args) {
int x=1000;

if (Integer.toString(x).length.equals(4) )
System.out.println("Hi");

}
}