Cod sursa(job #1267555)
Utilizator | Data | 20 noiembrie 2014 00:16:18 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include<iostream.h>
#include<fstream.h>
using namespace std;
int a,b;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a;
f>>b;
g<<a+b;
f.close();
g.close();
cout.flush();
return 0;
}