Cod sursa(job #2201)

Utilizator mithyPopovici Adrian mithy Data 16 decembrie 2006 13:25:38
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream.h>

long a,b;

int main()
{
  ifstream fin("adunare.in");
  ofstream fout("adunare.out");
  fin >> a >> b;
  cout << a+b << '\n';
  return 0;
}