Cod sursa(job #1047588)
Utilizator | Data | 4 decembrie 2013 18:46:18 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<iostream.h>
#include<fstream.h>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int a, b;
int main()
{
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;
}