Cod sursa(job #552974)
| Utilizator | Data | 13 martie 2011 11:58:57 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a,b;
ifstream k("adunare.in");
ofstream l("adunare.out");
k>>a>>b;
l<<a+b;
return 0;
}
