#include<iostream> using namespace std; main() { float num1,num2,mul; cout<< " \n Enter a Number : " ; cin>>num1; cout<< "\n Enter another Number : " ; cin>>num2; mul=num1*num2; cout<< "\n The multiplication of the Numbers is : " <<mul <<endl ; system("pause") ; }