Skip to content

Instantly share code, notes, and snippets.

@shubham1710
Last active January 14, 2020 14:40
Show Gist options
  • Save shubham1710/952f1d4519aae85eec2d1559c171871c to your computer and use it in GitHub Desktop.
Save shubham1710/952f1d4519aae85eec2d1559c171871c to your computer and use it in GitHub Desktop.
#include<bits/stdc++.h>
int main()
{
int a,b;
cout<<"Enter two numbers \n";
cin>>a>>b;
cout<<"\n The sum of the two numbers are"<<a+b;
return 0;
}
/* OUTPUT
Enter two numbers
23 45
The sum of the two numbers are 68
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment