Cod sursa(job #103948)
Utilizator | Data | 15 noiembrie 2007 19:50:04 | |
---|---|---|---|
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()
{
clrscr();
int a,b,s=0;
cout<<"Dati nr a: ";
cin>>a;
cout<<"Dati nr b: ";
cin>>b;
s=a+b;
cout<<"a+b= "<<s;
return 0;
}