Cod sursa(job #101018)
Utilizator | Data | 12 noiembrie 2007 21:57:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<iostream.h>
#include<conio.h>
int main()
{
int a,b,s=0;
cout<<"Dati nr a: ";
cin>>a;
cout<<"Dati nr b: ";
cin>>b;
s=a+b;
cout<<"a+b= "<<s;
getch();
return 0;
}