Cod sursa(job #361313)
| Utilizator | Data | 4 noiembrie 2009 16:45:13 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream>
using namespace std;
int main()
{ifstream q ("adunare.in");
ofstream w ("adunare.out");
int a,b;
q>>a>>b;
w<<a+b;
return 0;
}
