Cod sursa(job #823217)

Utilizator sicsicFMI-Coteanu Vlad sicsic Data 24 noiembrie 2012 19:06:20
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 a,b;
int main()
{ f>>a>>b;
  g<<a+b<<'\n';
  f.close();
  g.close();
  return 0;
}