What is the output of the following code:
 Module MAIN( )
 //Create variables and call modules.
 Declare integer count1 =5
 Declare integer count2 = 3
 Declare integer count3 = 2
 
 DISPLAY count1, count2, count3
 
 CALL   RECALC( count1)
 DISPLAY count1, count2, count3
 
 CALL  RECALC( count3)
 DISPLAY count1, count2, count3
 
 CALL RECALC(count1)
 DISPLAY count1, count2, count3
 
 END MODULE
 //The calculation module.
 Module RECALC(integer ref num)
 DECLARE  integer num1 = 2
 SET num = num1 * num
 END Module