Created
May 21, 2014 10:22
-
-
Save Manume/be4301a897cbd2de10ec to your computer and use it in GitHub Desktop.
Revisions
-
Manume created this gist
May 21, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ #include<iostream.h> #include<conio.h> void main() { int a,b,s; cout<<"enter two numbers"; cin>>a>>b; s=a+b; cout<<"the sum of two number is"<<s; getch(); }