Cod sursa(job #327869)

Utilizator cosmyoPaunel Cosmin cosmyo Data 30 iunie 2009 15:06:09
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream.h>
long a,b,s;
int main()
{ifstream fin("adunare.in");
  fin>>a>>b;
 fin.close();
 ofstream fout("adunare.out");
  fout<<a+b;
 return 0;
}