Cod sursa(job #217155)

Utilizator AdyyOrasanu Adrian Adyy Data 27 octombrie 2008 11:29:32
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream.h>
 ifstream f("adunare.in");
 ofstream g("adunare.out");
 long x,y,s;
 int main()
{
 f>>x>>y;
 s=x+y;
 g<<x<<y;
 g.close();
 f.close();
 return 0;
}