public class TestZero {
   public static void main (String[] args){
   int X = 5;    int Y = 0;
   System.out.println (X / Y);
   }
}