Cod sursa(job #498616)
Utilizator | Data | 5 noiembrie 2010 17:15:56 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.26 kb |
#include<iostream>
#include<fstream.h>
using namespace std;
int main()
{
int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a;
f>>b;
g<<a+b;
f.close();
g.close();
system("pause");
return 0;
}