Cod sursa(job #794325)
Utilizator | Data | 6 octombrie 2012 10:37:45 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<iostream>
using namespace std;
int main()
{ int a,b,c;
cout<<"a="<<endl;
cin>>a;
cout<<"b="<<endl;
cin>>b;
c=a+b;
cout<<"c="<<c;
system("pause");
return 0;
}