Cod sursa(job #1276732)
| Utilizator | Data | 26 noiembrie 2014 19:40:54 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{int A,B;
ifstream f("date.in");
f>>A>>B;
f.close();
ofstream g("date.out");
g<<A+B<<endl;
g.close();
return 0;
}
