Cod sursa(job #1026928)
| Utilizator | Data | 12 noiembrie 2013 11:34:59 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <fstream>
#include <iostream>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
int a=0; int b=0;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;
}
