Use this code with the video

/*
 * Output in Java
 */

import java.io.*;
import static java.lang.System.*;

import java.util.Scanner;

class t1_lesson06_template{


     public static void main (String str[]) throws IOException {

         
            int x = 15;
            double half = x/2;
            
            System.out.println(half);
          
          

     }

}