Cod sursa(job #336962)
| Utilizator | Data | 2 august 2009 02:35:23 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<iostream>
using namespace std;
int main() {
int a, b;
cout << "Please enter the first number: ";
cin >> a;
cout << "Please enter the second number: ";
cin >> b;
cout << a + b;
return 0;
}
