Cod sursa(job #766677)

Utilizator SymbolicLayerCostache Adrian SymbolicLayer Data 11 iulie 2012 20:38:00
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream.h>
using namespace std;
int main()
{
int x,y;
ifstream f("adunare.in");
f>>x>>y;
f.close();
ofstream g("adunare.out");
g<<x+y;
g.close();
return 0;
}