Cod sursa(job #1188835)
| Utilizator | Data | 20 mai 2014 17:26:36 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | teme_upb | Marime | 0.2 kb |
#include <iostream>
using namespace std;
int main()
{
int A, B, S;
cout<<" A = ";cin>>A;
cout<<"B = ";cin>>B;
S = A + B;
cout<<A<<" + "<< B <<" = "<<S;
return 0;
}
