import java.Math.*;
class Main
{
  public static void main (String[] args) throws java.lang.Exception
  {
      double x=2;
	double y=500;
        double z;
       z=ceil(x/y);  
System.out.println("The ceiling of"+ z); 
  }
} 