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