(* Exercise 3-2 : Multiplication *) (* Name : *) (* Class : *) (* Class No. : *) (* Question : Write a program to prompt user to input two 2-digit integers (7 marks) which must be within the range [10,99] for example : 92, 17. Print their product in the following format : 92 x 17 ------ 92 <-- this row for tens of 2nd no. 644 <-- this row for units of 2nd no. ------ 1564 ==== At the end of your homework, print a sample run of your program. Bonus : Bonus is awarded if your program can manipulate multiplication (3 marks) of 3-digit decimal numbers, e.g. 36.4, 8.45 This is a challenging task. You should take care of the position of the decimal point. *) (* Code your program below : *) PROGRAM multiplication; VAR num1, num2, product : ; (* declare appropriate data type *) BEGIN write(' '); (* Prompt message asking for inputs *) readln( ); (* Read two integers *) (* By using WRITELN, write statements for the *) (* first 3 rows of the above format. *) writeln( ); (* Display the row for tens, hint: using DIV *) writeln( ); (* Display the row for units, hint: using MOD *) (* By using WRITELN, write statements for the *) (* last 3 rows of the above format. *) END.