What is the output of the following program?
int num = 123;
int hours = num % 60;
int minutes = num / 60;
System.out.printIn(hours+ " hours and " + minutes + " minutes");
A. 3 hours and 1 minutes
B. 3 hours and 2 minutes
c. 2 hours and 3 minutes
D. 3 hours and 31 minutes
E. 3 hours and 30 minutes