LAB: Divide input integers Write a program using integers userNum and divNum as input, and output userNum divided by divNum three times. Note: End with a newline. Ex: If the input is: 2000 2 the output is: 1000 500 250 Note: In Java, integer division discards fractions. Ex: 6 / 4 is 1 (the 0.5 is discarded). import java.util.Scanner; public class LabProgram { public static void main(String[] args) { /* Type your code here. */ } } (My professor wants us to use this temple and I'm not sure how I should start typing the code were it says "type code here". I've tried differnt forms like the one provided below but they all have errors according to the program. it tells me that i have to place ; . import java.util.Scanner; public class LabProgram { public static void main(String[] args) { userNum= int(input()) divNum= int(input())