C++ I/O

#include <iostream>
using namespace std;
int main()
{
    int i,j;
    cin >> i; 
    cin >> j;
    cout << "The multiplication of two integer is: " << i*j << "\n"; 
    system("pause");
    return 0;
}
    

0 comments:

Post a Comment