Cod sursa(job #376173)

Utilizator bogyorbogyor bogdan bogyor Data 20 decembrie 2009 21:25:07
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.33 kb
#include <cstdlib>
#include <iostream>

using namespace std;
int suma(int a,int b)
{
     int s=0;
     s=a+b;
     cout<<"suma este = "<<s<<endl;
     return 0;
}
int main(int argc, char *argv[])
{
    int a,b;
    cout<<"a=";cin>>a;
    cout<<"b=";cin>>b;
    suma(a,b);
    system("PAUSE");
    return EXIT_SUCCESS;
}