//Program 11.3 //Program To Calculate the value of the function //Y=A*B clear; clc; close; //Input Data A=input('Enter Integer Number A ='); B=input('Enter Integer Number B ='); //Multiplication Computation Y=A*B; //Display the result in command window disp(Y,"Y = A*B = ");