Cod sursa(job #523460)
| Utilizator | Data | 18 ianuarie 2011 08:34:39 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<iostream.h>
int main ()
{
int a,b,s=0;
cout<<"a=";
cin>>a;
cout<<"b=";
cin>>b;
s=a+b;
cout<<"Suma numerelor este: "<<s;
return 0;
}
