Write a program that predicts how many whole bags of apples can be produced given the number of apples available (assume that each bag has dozen apples). prompt the user to enter the number of apples available; in the output display the total number of apples, number of whole bags produced and number of apples that will be leftover. (hint use integer division and % ) for example, if 50 is the number of apples available, then 4 whole bags will be produced and 2 apples will be leftover.