Cod sursa(job #139634)
Utilizator | Data | 20 februarie 2008 14:58:01 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<iostream.h>
using namespace std;
main()
{
int a,b,s=0;
cout<<"a=";cin>>a;
cout<<"b=";cin>>b;
s=a+b;
cout<<s;
system("pause");
}