Wednesday, 24 July 2013

PROGRAM TO MULTIPLY TWO NUMBERS

//PROGRAM TO MULTIPLY TWO NUMBERS
/*MADE BY KRISHNA AGARWAL*/
#include<iostream>
using namespace std;
int main()
{
    int a,b,c;
    cout<<"emter the value of a\n";
    cin>>a;
    cout<<"enter the value of b\n";
    cin>>b;
    c=a*b;
    cout<<"the product of two noumbers is\n"<<c;
    return 0;
}

No comments:

Post a Comment