Last active
January 14, 2020 14:40
-
-
Save shubham1710/952f1d4519aae85eec2d1559c171871c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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