Skip to content

Instantly share code, notes, and snippets.

@programmingfaster0226
Created June 4, 2018 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save programmingfaster0226/cd8243662274279c2ec3ea98fbcc904f to your computer and use it in GitHub Desktop.
Save programmingfaster0226/cd8243662274279c2ec3ea98fbcc904f to your computer and use it in GitHub Desktop.
programmingfaster.com
#include<iostream>
using namespace std;
int main()
{
int a,b,c;
cout<<"enter any two numbers";
cin>>a>>b;
c=a*b;
cout<<"multiply="<<c;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment