Skip to content

Instantly share code, notes, and snippets.

@Manume
Created May 21, 2014 10:22
Show Gist options
  • Select an option

  • Save Manume/be4301a897cbd2de10ec to your computer and use it in GitHub Desktop.

Select an option

Save Manume/be4301a897cbd2de10ec to your computer and use it in GitHub Desktop.

Revisions

  1. Manume created this gist May 21, 2014.
    11 changes: 11 additions & 0 deletions sum of two numbers
    Original 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();
    }